merge performance branch into main
Tara L Andrews [Fri, 15 Jun 2012 14:12:48 +0000 (16:12 +0200)]
.gitignore
Makefile.PL
lib/Text/Tradition/Directory.pm
lib/Text/Tradition/TypeMap/Entry.pm [new file with mode: 0644]
t/bin/update-load-test.pl [new file with mode: 0644]
t/data/load-save-benchmark.json [new file with mode: 0644]
t/data/speed_test_load.sql [new file with mode: 0644]
t/load-save-speed.t [new file with mode: 0644]

index 7e8c749..484a79c 100644 (file)
@@ -1,5 +1,6 @@
 *~
 *.bbprojectd/
+t/var
 data
 !/t/data
 Makefile
index 789d19c..8d23a73 100644 (file)
@@ -31,11 +31,13 @@ requires( 'XML::Easy::Syntax' );
 requires( 'XML::LibXML' );
 requires( 'XML::LibXML::XPathContext' );
 requires( 'YAML::XS' );
+requires( 'namespace::clean' );
 # For the morphology stuff
 requires( 'Lingua::TagSet::Multext' );
 requires( 'Lingua::TagSet::TreeTagger::French' );
 requires( 'Lingua::TagSet::TreeTagger::English' );
 requires( 'Lingua::Features::Structure' );
+build_requires( 'Data::Dump' );
 build_requires( 'Test::Warn' );
 # Modules needed for morphology but not trivially CPANnable
 recommends( 'Lingua::TreeTagger' );
index 8d9b228..33c40ed 100644 (file)
@@ -151,20 +151,23 @@ is( ref( $nt ), 'Text::Tradition', "Made new tradition" );
 =end testing
 
 =cut
+use Text::Tradition::TypeMap::Entry;
 
 has +typemap => (
-       is => 'rw',
-       isa => 'KiokuDB::TypeMap',
-       default => sub { 
-               KiokuDB::TypeMap->new(
-                       isa_entries => {
-                               "Graph" => KiokuDB::TypeMap::Entry::Naive->new,
-                               "Graph::AdjacencyMap" => KiokuDB::TypeMap::Entry::Naive->new,
-                               "Lingua::Features::Structure" => KiokuDB::TypeMap::Entry::Naive->new,
-                               "Lingua::Features::FeatureType" => KiokuDB::TypeMap::Entry::Naive->new,
-                       }
-               );
-       },
+  is      => 'rw',
+  isa     => 'KiokuDB::TypeMap',
+  default => sub {
+    KiokuDB::TypeMap->new(
+      isa_entries => {
+        "Text::Tradition" =>
+          KiokuDB::TypeMap::Entry::Naive->new(),
+        "Graph" => Text::Tradition::TypeMap::Entry->new(),
+        "Graph::AdjacencyMap" => Text::Tradition::TypeMap::Entry->new(),
+               "Lingua::Features::Structure" => Text::Tradition::TypeMap::Entry->new,
+               "Lingua::Features::FeatureType" => Text::Tradition::TypeMap::Entry->new,
+      }
+    );
+  },
 );
 
 # Push some columns into the extra_args
@@ -193,7 +196,8 @@ around BUILDARGS => sub {
        return $class->$orig( $args );
 };
 
-before [ qw/ store update insert delete / ] => sub {
+# before [ qw/ store update insert delete / ] => sub {
+before [ qw/ delete / ] => sub {
        my $self = shift;
        my @nontrad;
        foreach my $obj ( @_ ) {
diff --git a/lib/Text/Tradition/TypeMap/Entry.pm b/lib/Text/Tradition/TypeMap/Entry.pm
new file mode 100644 (file)
index 0000000..00cdfd1
--- /dev/null
@@ -0,0 +1,42 @@
+package Text::Tradition::TypeMap::Entry;
+use Moose;
+
+no warnings 'recursion';
+
+use namespace::clean -except => 'meta';
+
+with qw(KiokuDB::TypeMap::Entry::Std);
+
+use YAML::XS ();
+
+sub compile_collapse_body {
+    my ( $self, $class ) = @_;
+
+    return sub {
+        my ( $self, %args ) = @_;
+
+        my $object = $args{object};
+
+        return $self->make_entry(
+            %args,
+            data => YAML::XS::Dump($object)
+        );
+    };
+}
+
+sub compile_expand {
+    my ( $self, $class ) = @_;
+
+    return sub {
+        my ( $self, $entry ) = @_;
+        $self->inflate_data( YAML::XS::Load($entry->data), \( my $obj ), $entry );
+
+        bless $obj, $class;
+    };
+}
+
+sub compile_refresh { return sub { die "TODO" } }
+
+__PACKAGE__->meta->make_immutable;
+
+1;
diff --git a/t/bin/update-load-test.pl b/t/bin/update-load-test.pl
new file mode 100644 (file)
index 0000000..40e0e17
--- /dev/null
@@ -0,0 +1,62 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+use lib 'lib';
+
+use File::Temp;
+
+use Text::Tradition;
+use Text::Tradition::Directory;
+
+## We're loading the besoin data, and dumping the backend db rows into
+## a .sql file for load testing (testing of data loading, not the
+## other sort)
+my $sql = 't/data/speed_test_load.sql';
+my $uuid = 'load-test';
+
+print "Loading t/data/besoin.xml and storing it in $sql ...\n";
+
+## Load tradition data:
+my $tradition = Text::Tradition->new(
+   'input' => 'Self',
+   'file'  => "t/data/besoin.xml"
+);
+$tradition->add_stemma(dotfile => "t/data/besoin.dot");
+
+## save to db:
+my $fh = File::Temp->new();
+my $file = $fh->filename;
+$fh->close;
+
+my $dsn = "dbi:SQLite:$file";
+my $dir = Text::Tradition::Directory->new(
+    dsn => $dsn,
+    extra_args => { create => 1 },
+);
+my $scope = $dir->new_scope;
+$dir->store($uuid, $tradition);
+
+## out to SQL file:
+`sqlite3 $file ".dump" > $sql`;
+
+print "$sql updated,\n";
+
+=head1 NAME
+
+update-load-test.pl - Recreate the test file using for testing the speed of loading Traditions from a KiokuDB.
+
+=head1 USAGE
+
+    perl t/bin/update-load-test.pl
+
+This small script exists to enable an update of the test data for the
+speed tests in F<t/data/load-save-speed.t>. It loads the
+F<t/data/besoin.xml> test file and outputs the resulting database to
+F<t/data/speed_test_load.sql>.
+
+Only run this script after changes have been made to the way
+Traditions data is stored in the database.
+
+
diff --git a/t/data/load-save-benchmark.json b/t/data/load-save-benchmark.json
new file mode 100644 (file)
index 0000000..cb439cf
--- /dev/null
@@ -0,0 +1 @@
+[{"save_times":[1000,1000,1000,0,0,20],"git_hash":"","load_times":[1000,1000,1000,0,0,5],"host":"sherlock"},{"save_times":[101,99.22,0.58,0,0,5],"git_hash":"278698b1bacdd6f828896a613aaeac721ea802bd","load_times":[94,92.64,1.33,0,0,20],"host":"sherlock"},{"save_times":[103,102.02,0.51,0,0,5],"git_hash":"278698b1bacdd6f828896a613aaeac721ea802bd","load_times":[95,93.38,1.31,0,0,20],"host":"sherlock"},{"save_times":[21,19.92,0.17,0,0,5],"git_hash":"b12c40e2a6558cd0e9f00341088cc0086e73001e","load_times":[22,20.51,0.49,0,0,20],"host":"bjork.local"},{"save_times":[11,7.67,0.16,0,0,5],"git_hash":"1d1e2121214d4824ef342aa5cf16c97d9e2b358a","load_times":[11,10.74,0.23,0,0,20],"host":"bjork.local"}]
\ No newline at end of file
diff --git a/t/data/speed_test_load.sql b/t/data/speed_test_load.sql
new file mode 100644 (file)
index 0000000..71142eb
--- /dev/null
@@ -0,0 +1,1184 @@
+BEGIN TRANSACTION;
+CREATE TABLE entries (
+  id varchar NOT NULL,
+  data blob NOT NULL,
+  class varchar,
+  root boolean NOT NULL,
+  tied char(1),
+  name varchar,
+  PRIMARY KEY (id)
+);
+INSERT INTO "entries" VALUES('B57F6FB6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"587,2","rank":"587","reading_lexemes":[],"text":"le"},"id":"B57F6FB6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5961D38-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"42,1","rank":"42","reading_lexemes":[],"text":"héritage"},"id":"B5961D38-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4E14EA8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"1p/3p (also spelling)","reading_a":"n''atteins","reading_b":"natteint","scope":"global","type":"grammatical"},"id":"B4E14EA8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B580F1A6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"893,2","rank":"893","reading_lexemes":[],"text":"n''aurai"},"id":"B580F1A6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B145CC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"181,1","rank":"181","reading_lexemes":[],"text":"une"},"id":"B5B145CC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B0E4D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"282,1","rank":"282","reading_lexemes":[],"text":"sarcastique"},"id":"B5B0E4D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6476778-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"45,1","rank":"45","reading_lexemes":[],"text":"ni"},"id":"B6476778-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DA760E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"980,1","rank":"980","reading_lexemes":[],"text":"conseil"},"id":"B5DA760E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F4F510-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"81,1","rank":"81","reading_lexemes":[],"text":"de"},"id":"B5F4F510-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B584B746-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"773,2","rank":"773","reading_lexemes":[],"text":"ce"},"id":"B584B746-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5ADE0A8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"75,1","rank":"75","reading_lexemes":[],"text":"du"},"id":"B5ADE0A8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61E4E74-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"102,2","rank":"102","reading_lexemes":[],"text":"doute"},"id":"B61E4E74-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53DA734-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"493,4","rank":"493","reading_lexemes":[],"text":"Prends"},"id":"B53DA734-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65C8D88-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"902,1","rank":"902","reading_lexemes":[],"text":"ont"},"id":"B65C8D88-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B561772C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"617,1","rank":"617","reading_lexemes":[],"text":"les"},"id":"B561772C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6704B20-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"771,1","rank":"771","reading_lexemes":[],"text":"mort"},"id":"B6704B20-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B627F992-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"874,1","rank":"874","reading_lexemes":[],"text":"et"},"id":"B627F992-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C1C94C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"393,1","rank":"393","reading_lexemes":[],"text":"se"},"id":"B5C1C94C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6445222-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"999,2","rank":"999","reading_lexemes":[],"text":"celui"},"id":"B6445222-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54E2A1E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"283,1","rank":"283","reading_lexemes":[],"text":"Puisque"},"id":"B54E2A1E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59D9612-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"588,2","rank":"588","reading_lexemes":[],"text":"crépuscule"},"id":"B59D9612-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A5D958-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"992,2","rank":"992","reading_lexemes":[],"text":"n''existe"},"id":"B5A5D958-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55B72FA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"27,1","rank":"27","reading_lexemes":[],"text":"soit"},"id":"B55B72FA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B652F1B0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"572,1","rank":"572","reading_lexemes":[],"text":"énumérer"},"id":"B652F1B0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60D71A8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"385,2","rank":"385","reading_lexemes":[],"text":"gourmandises"},"id":"B60D71A8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B50824-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"205,6","rank":"205","reading_lexemes":[],"text":"cime"},"id":"B5B50824-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5000924-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"561,1","rank":"561","reading_lexemes":[],"text":"la"},"id":"B5000924-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DD8736-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"504,1","rank":"504","reading_lexemes":[],"text":"la"},"id":"B5DD8736-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57D9092-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"909,2","rank":"909","reading_lexemes":[],"text":"devient"},"id":"B57D9092-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CA362C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"797,2","rank":"797","reading_lexemes":[],"text":"faire"},"id":"B5CA362C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B585D95A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"409,1","rank":"409","reading_lexemes":[],"text":"je"},"id":"B585D95A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B621C040-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1005,2","rank":"1005","reading_lexemes":[],"text":"doit"},"id":"B621C040-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58EA01C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"769,2","rank":"769","reading_lexemes":[],"text":"que"},"id":"B58EA01C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B68725AC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"313,1","rank":"313","reading_lexemes":[],"text":"remplissent"},"id":"B68725AC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B648F1CE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"655,2","rank":"655","reading_lexemes":[],"text":"perpétuelle"},"id":"B648F1CE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4ED1382-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"329,1","rank":"329","reading_lexemes":[],"text":"fais-en"},"id":"B4ED1382-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B677C49A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"378,1","rank":"378","reading_lexemes":[],"text":"côté"},"id":"B677C49A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B569EA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"200,1","rank":"200","reading_lexemes":[],"text":"souffle"},"id":"B5B569EA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5796C74-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"836,2","rank":"836","reading_lexemes":[],"text":"pas"},"id":"B5796C74-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B570496E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"113,1","rank":"113","reading_lexemes":[],"text":"n''était"},"id":"B570496E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6107FC4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"471,1","rank":"471","reading_lexemes":[],"text":"pas"},"id":"B6107FC4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B552CFD8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"248,1","rank":"248","reading_lexemes":[],"text":"et"},"id":"B552CFD8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52313CE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"235,1","rank":"235","reading_lexemes":[],"text":"je"},"id":"B52313CE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6CA9710-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Witness","data":{"language":"Default","sigil":"U","sourcetype":"collation","text":["Notre besoin de consolation est impossible à","rassasier","Stig Dagerman","Je","suis","dépourvu","de","foi","et","ne","puis","donc","être","heureux","car","un","homme","qui","risque","de","craindre","que","sa","vie","ne","soit","errance","absurde","vers","une","mort","certaine","ne","peut","être","heureux","Je n''ai","reçu","en","héritage","ni","dieu","ni","point","fixe","sur","la","terre","d''où","je","puisse","attirer","l''attention","d''un","dieu","On","ne","m''a","pas","non","plus","légué","la","fureur","bien","déguisée","du","sceptique","les","ruses","des","Sioux","du","rationnaliste","ou","la","candeur","ardente","de","l''athée","Je","n''ose","donc","jeter","la","pierre","ni","à","celle","qui","croit","des","choses","qui","ne","m''inspirent","que","le","doute","ni","à","celui","qui","cultive","son","doute","comme","si","celui-ci","n''était","pas","lui","aussi","entouré","de","ténèbres","Cette","pierre","m''atteindrait","moi-même","car","je","suis","bien","certain","d''une","chose","le","besoin","de","consolation","que","connait","l''être","humain","est","impossible","à","rassasier","En","ce","qui","me","concerne","je","traque","la","consolation","comme","le","chasseur","traque","le","gibier","Partout","où","je","crois","l''apercevoir","dans","la","forêt","je","tire","Souvent","je","n''atteins","que","le","vide","mais","une","fois","de","temps","en","temps","une","proie","tombe","à","mes","pieds","Et","comme","je","sais","que","la","consolation","ne","dure","que","le","temps","d''un","souffle","de","vent","dans","la","cîme","d''un","arbre","je","me","dépêche","de","m''emparer","de","ma","victime","Qu''ai-je","alors","entre","les","bras","Puisque","je","suis","solitaire","une","femme","aimée","ou","un","compagnon","de","voyage","malheureux","Puisque","je","suis","poète","un","arc","de","mots","que","je","ressens","de","la","joie","et","de","l''effroi","à","bander","Puisque","je","suis","prisonnier","un","aperçu","soudain","de","la","liberté","Puisque","je","suis","menacé","par","la","mort","un","animal","vivant","et","bien","chaud","un","cœur","qui","bat","de","façon","sarcastique","Puisque","je","suis","menacé","par","la","mer","un","récif","de","granit","bien","dur","Mais","il","y","a","aussi","des","consolations","qui","viennent","à","moi","sans","y","être","conviées","et","qui","remplissent","ma","chambre","de","chuchotements","odieux","Je","suis","ton","plaisir","aime-les","tous","Je","suis","ton","talent","fais-en","aussi","mauvais","usage","que","de","Toi-même","Je","suis","ton","désir","de","jouissance","seuls","vivent","les","gourmets","Je","suis","ta","solitude","Méprise","les","hommes","Je","suis","ton","aspiration","à","la","mort","alors","Tranche","Le","fil","du","rasoir","est","bien","étroit","Je","vois","ma","vie","menacée","par","deux","périls","d''un","côté","par","les","bouches","avides","de","la","gourmandise","de","l''autre","par","l''amertume","de","l''avarice","qui","se","nourrit","d''elle-même","Mais","je","tiens","à","refuser","de","choisir","entre","l''orgie","et","l''ascèse","même","si","je","dois","pour","cela","subir","le","supplice","du","grill","de","mes","désirs","Pour","moi","il","ne","suffit","pas","de","savoir","que","puisque","nous","ne","sommes","pas","libres","de","nos","actes","tout","est","excusable","Ce","que","je","cherche","ce","n''est","pas","une","excuse","à","ma","vie","mais","exactement","le","contraire","d''une","excuse","le","pardon","L''idée","me","vient","finalement","que","toute","consolation","ne","prenant","pas","en","compte","ma","liberté","est","trompeuse","qu''elle","n''est","que","l''image","réfléchie","de","mon","désespoir","En","effet","lorsque","mon","désespoir","me","dit","Perds","confiance","car","chaque","joie","n''est","qu''une","trève","entre","deux","nuits","la","fausse","consolation","me","crie","Espère","car","chaque","nuit","n''est","qu''une","trève","entre","deux","jours","Mais","l''humanité","n''a","que","faire","d''une","consolation","en","forme","de","mot","d''esprit","elle","a","besoin","d''une","consolation","qui","illumine","Et","celui","qui","souhaite","devenir","mauvais","c''est-à-dire","devenir","un","homme","qui","agisse","comme","si","toutes","les","actions","étaient","défendables","doit","du","moins","avoir","la","bonté","de","le","remarquer","lorsqu''il","y","parvient","Personne","ne","peut","énumérer","tous","les","cas","où","la","consolation","est","une","nécessité","Personne","ne","sait","quand"],"tradition":{"$ref":"load-test.data"}},"id":"B6CA9710-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Witness',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5678716-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"426,1","rank":"426","reading_lexemes":[],"text":"pas"},"id":"B5678716-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4EB31C0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":null,"is_end":"1","is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"#END#","rank":"1014","reading_lexemes":[],"text":"#END#"},"id":"B4EB31C0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65354D4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"66,1","rank":"66","reading_lexemes":[],"text":"fureur"},"id":"B65354D4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B623C318-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"397,1","rank":"397","reading_lexemes":[],"text":"je"},"id":"B623C318-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57589B0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1003,2","rank":"1003","reading_lexemes":[],"text":"le"},"id":"B57589B0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51CA3EA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"940,2","rank":"940","reading_lexemes":[],"text":"fort"},"id":"B51CA3EA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B539A166-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"763,2","rank":"763","reading_lexemes":[],"text":"alors"},"id":"B539A166-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B02214-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"147,1","rank":"147","reading_lexemes":[],"text":"concerne"},"id":"B5B02214-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5EDEF36-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"155,2","rank":"155","reading_lexemes":[],"text":"traque"},"id":"B5EDEF36-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4EEF2A6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"578,1","rank":"578","reading_lexemes":[],"text":"consolation"},"id":"B4EEF2A6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D36DAA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"577,1","rank":"577","reading_lexemes":[],"text":"la"},"id":"B5D36DAA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55200F8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"492,1","rank":"492","reading_lexemes":[],"text":"dit"},"id":"B55200F8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54224EE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"579,1","rank":"579","reading_lexemes":[],"text":"est"},"id":"B54224EE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B677616C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"770,2","rank":"770","reading_lexemes":[],"text":"la"},"id":"B677616C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F26602-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"52,1","rank":"52","reading_lexemes":[],"text":"je"},"id":"B4F26602-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F5CD74-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"137,1","rank":"137","reading_lexemes":[],"text":"l''être"},"id":"B4F5CD74-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57A90EA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"348,1","rank":"348","reading_lexemes":[],"text":"ta"},"id":"B57A90EA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E7D218-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"400,1","rank":"400","reading_lexemes":[],"text":"refuser"},"id":"B5E7D218-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54EF7C8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"727,2","rank":"727","reading_lexemes":[],"text":"le"},"id":"B54EF7C8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54B5A14-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"157,1","rank":"157","reading_lexemes":[],"text":"gibier"},"id":"B54B5A14-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BAAEC8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"932,2","rank":"932","reading_lexemes":[],"text":"fait"},"id":"B5BAAEC8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B617D0BC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"459,1","rank":"459","reading_lexemes":[],"text":"excuse"},"id":"B617D0BC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55570C6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"566,1","rank":"566","reading_lexemes":[],"text":"lorsqu''il"},"id":"B55570C6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50A49C0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"736,3","rank":"736","reading_lexemes":[],"text":"murs"},"id":"B50A49C0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B98EDA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"515,1","rank":"515","reading_lexemes":[],"text":"trêve"},"id":"B5B98EDA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B530E292-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"706,1","rank":"706","reading_lexemes":[],"text":"et"},"id":"B530E292-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60DD350-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"684,2","rank":"684","reading_lexemes":[],"text":"qui"},"id":"B60DD350-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4EE91DA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"162,1","rank":"162","reading_lexemes":[],"text":"l''apercevoir"},"id":"B4EE91DA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6402440-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"720,2","rank":"720","reading_lexemes":[],"text":"tous"},"id":"B6402440-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B675CC76-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"638,2","rank":"638","reading_lexemes":[],"text":"que"},"id":"B675CC76-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5356BA0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"219,1","rank":"219","reading_lexemes":[],"text":"les"},"id":"B5356BA0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67B939A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"382,1","rank":"382","reading_lexemes":[],"text":"arides"},"id":"B67B939A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A27BC8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"161,1","rank":"161","reading_lexemes":[],"text":"crois"},"id":"B5A27BC8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66C646A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"906,2","rank":"906","reading_lexemes":[],"text":"du"},"id":"B66C646A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59BD732-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"955,1","rank":"955","reading_lexemes":[],"text":"et"},"id":"B59BD732-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FD5340-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"580,1","rank":"580","reading_lexemes":[],"text":"une"},"id":"B5FD5340-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63B8F84-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"984,2","rank":"984","reading_lexemes":[],"text":"une"},"id":"B63B8F84-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B68D7312-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Stemma","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"graph":{"$ref":"B68D8ED8-9504-11E1-93EE-8FC4A89F4671.data"}},"id":"B68D7312-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Stemma',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B639F37C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"148,1","rank":"148","reading_lexemes":[],"text":"je"},"id":"B639F37C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6432F96-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"900,2","rank":"900","reading_lexemes":[],"text":"mes"},"id":"B6432F96-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53CE6E6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"551,1","rank":"551","reading_lexemes":[],"text":"si"},"id":"B53CE6E6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4FD021A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"143,1","rank":"143","reading_lexemes":[],"text":"En"},"id":"B4FD021A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C2EB10-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"176,1","rank":"176","reading_lexemes":[],"text":"fois"},"id":"B5C2EB10-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51816A4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"125,1","rank":"125","reading_lexemes":[],"text":"je"},"id":"B51816A4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5AEFF06-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"44,2","rank":"44","reading_lexemes":[],"text":"dieu"},"id":"B5AEFF06-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66A7CD6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"755,2","rank":"755","reading_lexemes":[],"text":"le"},"id":"B66A7CD6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5206F52-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"4,1","rank":"4","reading_lexemes":[],"text":"Stig Dagerman"},"id":"B5206F52-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FE16CC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"168,1","rank":"168","reading_lexemes":[],"text":"Souvent"},"id":"B5FE16CC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62426FA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"817,2","rank":"817","reading_lexemes":[],"text":"cerveau"},"id":"B62426FA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5EA77E8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"696,1","rank":"696","reading_lexemes":[],"text":"dans"},"id":"B5EA77E8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59992D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"971,2","rank":"971","reading_lexemes":[],"text":"peur"},"id":"B59992D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56A2854-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"8,1","rank":"8","reading_lexemes":[],"text":"de"},"id":"B56A2854-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67170A4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"421,1","rank":"421","reading_lexemes":[],"text":"Pour"},"id":"B67170A4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52AD334-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"597,3","rank":"597","reading_lexemes":[],"text":"peut"},"id":"B52AD334-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6736D14-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"568,1","rank":"568","reading_lexemes":[],"text":"parvient"},"id":"B6736D14-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53C8502-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"260,1","rank":"260","reading_lexemes":[],"text":"de"},"id":"B53C8502-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B68ECE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"150,1","rank":"150","reading_lexemes":[],"text":"la"},"id":"B5B68ECE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C6474C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"983,2","rank":"983","reading_lexemes":[],"text":"n''est"},"id":"B5C6474C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5138454-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"394,1","rank":"394","reading_lexemes":[],"text":"nourrit"},"id":"B5138454-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B630BFF0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"496,1","rank":"496","reading_lexemes":[],"text":"chaque"},"id":"B630BFF0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E34400-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"711,2","rank":"711","reading_lexemes":[],"text":"me"},"id":"B5E34400-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B635B8DE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"512,1","rank":"512","reading_lexemes":[],"text":"nuit"},"id":"B635B8DE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B514A794-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"90,1","rank":"90","reading_lexemes":[],"text":"à"},"id":"B514A794-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B572E96C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"745,1","rank":"745","reading_lexemes":[],"text":"dans"},"id":"B572E96C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D61DA2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"649,2","rank":"649","reading_lexemes":[],"text":"la"},"id":"B5D61DA2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4FC40D2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"142,1","rank":"142","reading_lexemes":[],"text":"rassassier"},"id":"B4FC40D2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55E1668-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"443,1","rank":"443","reading_lexemes":[],"text":"que"},"id":"B55E1668-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B5CB42-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"731,1","rank":"731","reading_lexemes":[],"text":"et"},"id":"B5B5CB42-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6488D24-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"15,1","rank":"15","reading_lexemes":[],"text":"heureux"},"id":"B6488D24-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B611442C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"324,3","rank":"324","reading_lexemes":[],"text":"tous"},"id":"B611442C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D110AA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"615,2","rank":"615","reading_lexemes":[],"text":"prévisible"},"id":"B5D110AA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B68BB112-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"680,1","rank":"680","reading_lexemes":[],"text":"et"},"id":"B68BB112-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B667079A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"646,2","rank":"646","reading_lexemes":[],"text":"mouvement"},"id":"B667079A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6782552-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"913,1","rank":"913","reading_lexemes":[],"text":"si"},"id":"B6782552-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67EA04E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"545,1","rank":"545","reading_lexemes":[],"text":"devenir"},"id":"B67EA04E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B551A126-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"904,2","rank":"904","reading_lexemes":[],"text":"le"},"id":"B551A126-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D90496-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"sg/pl","reading_a":"de","reading_b":"des","scope":"global","type":"grammatical"},"id":"B4D90496-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55AB1E4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"14,1","rank":"14","reading_lexemes":[],"text":"être"},"id":"B55AB1E4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F4944E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"149,1","rank":"149","reading_lexemes":[],"text":"traque"},"id":"B5F4944E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62A4454-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"110,2","rank":"110","reading_lexemes":[],"text":"comme"},"id":"B62A4454-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B670AD40-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"169,1","rank":"169","reading_lexemes":[],"text":"je"},"id":"B670AD40-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60554A0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"923,2","rank":"923","reading_lexemes":[],"text":"je"},"id":"B60554A0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B563C45A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"805,2","rank":"805","reading_lexemes":[],"text":"blanches"},"id":"B563C45A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67507AA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"921,2","rank":"921","reading_lexemes":[],"text":"fait"},"id":"B67507AA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5AD809A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"963,2","rank":"963","reading_lexemes":[],"text":"prends"},"id":"B5AD809A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B666431E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"596,2","rank":"596","reading_lexemes":[],"text":"qui"},"id":"B666431E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61A7D26-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"617,3","rank":"617","reading_lexemes":[],"text":"des"},"id":"B61A7D26-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4EAD018-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"928,2","rank":"928","reading_lexemes":[],"text":"épouvantable"},"id":"B4EAD018-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65B08B4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"636,2","rank":"636","reading_lexemes":[],"text":"défit"},"id":"B65B08B4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5267C8A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"882,1","rank":"882","reading_lexemes":[],"text":"progrès"},"id":"B5267C8A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B1A7BA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"481,1","rank":"481","reading_lexemes":[],"text":"l''image"},"id":"B5B1A7BA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4FFA970-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"695,2","rank":"695","reading_lexemes":[],"text":"feu"},"id":"B4FFA970-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5AF5E74-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"77,1","rank":"77","reading_lexemes":[],"text":"ou"},"id":"B5AF5E74-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5EEB1A0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"997,2","rank":"997","reading_lexemes":[],"text":"consolation"},"id":"B5EEB1A0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5949CEC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"592,2","rank":"592","reading_lexemes":[],"text":"n''est"},"id":"B5949CEC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C34BA0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"949,2","rank":"949","reading_lexemes":[],"text":"animal"},"id":"B5C34BA0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55C92B6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"794,2","rank":"794","reading_lexemes":[],"text":"qu''elle"},"id":"B55C92B6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61ADD8E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"977,2","rank":"977","reading_lexemes":[],"text":"que"},"id":"B61ADD8E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52E9D16-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"674,2","rank":"674","reading_lexemes":[],"text":"ce"},"id":"B52E9D16-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B584592C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"395,1","rank":"395","reading_lexemes":[],"text":"d''elle-même"},"id":"B584592C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B68A2D6A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"76,1","rank":"76","reading_lexemes":[],"text":"rationnaliste"},"id":"B68A2D6A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53387F4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"742,1","rank":"742","reading_lexemes":[],"text":"dans"},"id":"B53387F4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64F6F68-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"370,1","rank":"370","reading_lexemes":[],"text":"crois"},"id":"B64F6F68-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F03624-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"627,2","rank":"627","reading_lexemes":[],"text":"sur"},"id":"B5F03624-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60933B8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"182,2","rank":"182","reading_lexemes":[],"text":"proie"},"id":"B60933B8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61D290E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"877,2","rank":"877","reading_lexemes":[],"text":"puis-je"},"id":"B61D290E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B674A54E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"470,1","rank":"470","reading_lexemes":[],"text":"prenant"},"id":"B674A54E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5AA1EDC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"82,1","rank":"82","reading_lexemes":[],"text":"l''athée"},"id":"B5AA1EDC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B530212C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1010,1","rank":"1010","reading_lexemes":[],"text":"pour"},"id":"B530212C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5943D74-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"845,2","rank":"845","reading_lexemes":[],"text":"mots"},"id":"B5943D74-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5967BB6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"69,1","rank":"69","reading_lexemes":[],"text":"du"},"id":"B5967BB6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5067EF8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"205,5","rank":"205","reading_lexemes":[],"text":"nime"},"id":"B5067EF8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B560575C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"194,1","rank":"194","reading_lexemes":[],"text":"ne"},"id":"B560575C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4EF54D0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"116,2","rank":"116","reading_lexemes":[],"text":"aussi"},"id":"B4EF54D0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E52946-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"420,1","rank":"420","reading_lexemes":[],"text":"désirs"},"id":"B5E52946-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5126204-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"114,1","rank":"114","reading_lexemes":[],"text":"pas"},"id":"B5126204-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B515C778-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"19,1","rank":"19","reading_lexemes":[],"text":"qui"},"id":"B515C778-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D7A258-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"228,1","rank":"228","reading_lexemes":[],"text":"ou"},"id":"B5D7A258-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B603D1CA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"361,2","rank":"361","reading_lexemes":[],"text":"Tranche"},"id":"B603D1CA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51F4B86-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"31,1","rank":"31","reading_lexemes":[],"text":"vers"},"id":"B51F4B86-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6548D5E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"279,1","rank":"279","reading_lexemes":[],"text":"bat"},"id":"B6548D5E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B689CC4E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"652,1","rank":"652","reading_lexemes":[],"text":"dans"},"id":"B689CC4E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F017BC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"692,2","rank":"692","reading_lexemes":[],"text":"assis"},"id":"B4F017BC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B80D80-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"905,2","rank":"905","reading_lexemes":[],"text":"cœur"},"id":"B5B80D80-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A0FC44-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"879,1","rank":"879","reading_lexemes":[],"text":"à"},"id":"B5A0FC44-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5061ED6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"843,2","rank":"843","reading_lexemes":[],"text":"tous"},"id":"B5061ED6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56E6900-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"799,2","rank":"799","reading_lexemes":[],"text":"Je"},"id":"B56E6900-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55BD182-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"244,2","rank":"244","reading_lexemes":[],"text":"ressens"},"id":"B55BD182-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B636DD72-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"293,2","rank":"293","reading_lexemes":[],"text":"granit"},"id":"B636DD72-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B567E83C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"818,2","rank":"818","reading_lexemes":[],"text":"Etant"},"id":"B567E83C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B509E71E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"813,2","rank":"813","reading_lexemes":[],"text":"que"},"id":"B509E71E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FE7A2C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"6,1","rank":"6","reading_lexemes":[],"text":"suis"},"id":"B5FE7A2C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DD241C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"253,1","rank":"253","reading_lexemes":[],"text":"Puisque"},"id":"B5DD241C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A3FA7A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"49,1","rank":"49","reading_lexemes":[],"text":"la"},"id":"B5A3FA7A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5776CD0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"438,1","rank":"438","reading_lexemes":[],"text":"actes"},"id":"B5776CD0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56BBB9C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"73,2","rank":"73","reading_lexemes":[],"text":"des"},"id":"B56BBB9C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B550DD0E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"464,1","rank":"464","reading_lexemes":[],"text":"vient"},"id":"B550DD0E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D46B52-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"sg/pl","reading_a":"talents","reading_b":"talent","scope":"global","type":"grammatical"},"id":"B4D46B52-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61FD424-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"803,1","rank":"803","reading_lexemes":[],"text":"les"},"id":"B61FD424-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6043228-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"37,1","rank":"37","reading_lexemes":[],"text":"être"},"id":"B6043228-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5101AA8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"379,1","rank":"379","reading_lexemes":[],"text":"par"},"id":"B5101AA8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5569212-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"815,3","rank":"815","reading_lexemes":[],"text":"imaginer"},"id":"B5569212-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5374EAC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"10,1","rank":"10","reading_lexemes":[],"text":"et"},"id":"B5374EAC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5863A58-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"424,1","rank":"424","reading_lexemes":[],"text":"ne"},"id":"B5863A58-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55E77E8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"128,1","rank":"128","reading_lexemes":[],"text":"certain"},"id":"B55E77E8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54CA1DA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"385,1","rank":"385","reading_lexemes":[],"text":"gourmandise"},"id":"B54CA1DA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6176EF6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"233,1","rank":"233","reading_lexemes":[],"text":"malheureux"},"id":"B6176EF6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50EF790-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"159,1","rank":"159","reading_lexemes":[],"text":"où"},"id":"B50EF790-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5587212-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"660,2","rank":"660","reading_lexemes":[],"text":"alors"},"id":"B5587212-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B538D240-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"857,2","rank":"857","reading_lexemes":[],"text":"me"},"id":"B538D240-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6215C9A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"309,1","rank":"309","reading_lexemes":[],"text":"êtres"},"id":"B6215C9A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B655B2A6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"448,1","rank":"448","reading_lexemes":[],"text":"pas"},"id":"B655B2A6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B564878C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"21,1","rank":"21","reading_lexemes":[],"text":"de"},"id":"B564878C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54DC6BE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"106,1","rank":"106","reading_lexemes":[],"text":"qui"},"id":"B54DC6BE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B86EEC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"107,1","rank":"107","reading_lexemes":[],"text":"cultive"},"id":"B5B86EEC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B440495E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::RelationshipStore","data":{"_equivalence_readings":{"#END#":["#END#"],"#START#":["#START#"],"1,1":["1,1"],"10,1":["10,1"],"100,1":["100,1"],"1000,2":["1000,2"],"1001,2":["1001,2"],"1002,2":["1002,2"],"1003,2":["1003,2"],"1003,3":["1003,3","1003,2"],"1004,2":["1004,2"],"1004,3":["1004,3"],"1005,2":["1005,2"],"1006,2":["1006,2"],"1007,2":["1007,2"],"1008,2":["1008,2"],"1009,2":["1009,2"],"101,1":["101,1"],"1010,1":["1010,1"],"1011,2":["1011,2"],"1012,2":["1012,2"],"1013,3":["1013,3"],"1013,4":["1013,4"],"102,2":["102,2"],"103,1":["103,1"],"104,1":["104,1"],"105,1":["105,1"],"106,1":["106,1"],"107,1":["107,1"],"108,1":["108,1"],"109,1":["109,1"],"11,1":["11,1"],"110,1":["110,1"],"110,2":["110,2","110,1"],"111,1":["111,1"],"112,1":["112,1"],"113,1":["113,1"],"114,1":["114,1"],"115,1":["115,1"],"116,2":["116,2"],"117,1":["117,1"],"118,1":["118,1"],"119,1":["119,1"],"12,1":["12,1"],"120,1":["120,1"],"121,1":["121,1"],"122,1":["122,1"],"123,1":["123,1"],"124,1":["124,1"],"125,1":["125,1"],"126,1":["126,1"],"127,1":["127,1"],"128,1":["128,1"],"129,1":["129,1"],"13,1":["13,1"],"130,1":["130,1"],"131,1":["131,1"],"132,1":["132,1"],"133,1":["133,1"],"134,1":["134,1"],"135,1":["135,1"],"136,1":["136,1"],"136,2":["136,2","136,1"],"137,1":["137,1"],"138,1":["138,1"],"139,1":["139,1"],"14,1":["14,1"],"140,1":["140,1"],"141,1":["141,1"],"142,1":["142,1"],"142,2":["142,2","142,1"],"143,1":["143,1"],"144,1":["144,1"],"145,1":["145,1"],"146,1":["146,1"],"147,1":["147,1"],"148,1":["148,1"],"149,1":["149,1"],"15,1":["15,1"],"150,1":["150,1"],"151,1":["151,1"],"152,1":["152,1"],"153,1":["153,1"],"154,1":["154,1"],"155,1":["155,1"],"155,2":["155,2","155,1"],"155,3":["155,3","155,2","155,1"],"156,1":["156,1"],"157,1":["157,1"],"158,1":["158,1"],"159,1":["159,1"],"16,1":["16,1"],"160,1":["160,1"],"161,1":["161,1"],"162,1":["162,1"],"163,1":["163,1"],"164,1":["164,1"],"165,1":["165,1"],"166,1":["166,1"],"167,1":["167,1"],"168,1":["168,1"],"169,1":["169,1"],"17,1":["17,1"],"170,1":["170,1"],"170,2":["170,2","170,1"],"171,1":["171,1"],"172,1":["172,1"],"173,1":["173,1"],"174,2":["174,2"],"175,1":["175,1"],"176,1":["176,1"],"177,1":["177,1"],"178,1":["178,1"],"179,1":["179,1"],"18,1":["18,1"],"180,1":["180,1"],"181,1":["181,1"],"182,1":["182,1"],"182,2":["182,2","182,1"],"183,1":["183,1"],"184,1":["184,1"],"185,1":["185,1"],"186,1":["186,1"],"187,1":["187,1"],"188,1":["188,1"],"189,1":["189,1"],"19,1":["19,1"],"190,1":["190,1"],"191,1":["191,1"],"192,1":["192,1"],"193,1":["193,1"],"194,1":["194,1"],"195,1":["195,1"],"196,1":["196,1"],"197,1":["197,1"],"198,1":["198,1"],"199,1":["199,1"],"2,1":["2,1","2,2"],"2,2":["2,2"],"20,1":["20,1"],"200,1":["200,1"],"201,1":["201,1"],"202,1":["202,1"],"203,1":["203,1"],"204,1":["204,1"],"205,2":["205,2"],"205,3":["205,3"],"205,4":["205,4"],"205,5":["205,5"],"205,6":["205,6","205,3"],"206,1":["206,1"],"207,1":["207,1"],"208,1":["208,1"],"209,1":["209,1"],"21,1":["21,1"],"210,1":["210,1"],"211,1":["211,1"],"212,1":["212,1"],"213,1":["213,1"],"214,1":["214,1"],"215,1":["215,1"],"216,1":["216,1"],"217,1":["217,1"],"218,1":["218,1"],"219,1":["219,1"],"219,2":["219,2","219,1"],"22,1":["22,1"],"220,1":["220,1"],"221,1":["221,1"],"222,1":["222,1"],"223,1":["223,1"],"224,1":["224,1"],"225,1":["225,1"],"226,1":["226,1"],"227,1":["227,1"],"228,1":["228,1"],"229,1":["229,1"],"23,1":["23,1"],"230,1":["230,1"],"231,1":["231,1"],"232,1":["232,1"],"233,1":["233,1"],"234,1":["234,1"],"235,1":["235,1"],"236,1":["236,1"],"237,1":["237,1"],"238,1":["238,1"],"239,1":["239,1"],"239,2":["239,2"],"24,1":["24,1"],"240,1":["240,1"],"241,1":["241,1"],"242,1":["242,1"],"243,1":["243,1"],"244,1":["244,1"],"244,2":["244,2","244,1"],"245,1":["245,1"],"245,2":["245,2"],"246,1":["246,1"],"247,1":["247,1"],"248,1":["248,1"],"249,1":["249,1"],"25,1":["25,1"],"250,1":["250,1"],"251,1":["251,1"],"251,2":["251,2"],"252,1":["252,1"],"253,1":["253,1"],"254,1":["254,1"],"255,1":["255,1"],"256,1":["256,1"],"257,1":["257,1"],"258,1":["258,1"],"259,1":["259,1"],"26,1":["26,1"],"260,1":["260,1"],"261,1":["261,1"],"262,1":["262,1"],"263,1":["263,1"],"264,1":["264,1"],"265,1":["265,1"],"266,1":["266,1"],"267,1":["267,1"],"268,1":["268,1"],"269,1":["269,1"],"27,1":["27,1"],"270,1":["270,1"],"271,1":["271,1"],"272,1":["272,1"],"273,1":["273,1"],"274,1":["274,1"],"275,1":["275,1"],"276,1":["276,1"],"277,1":["277,1"],"278,1":["278,1"],"279,1":["279,1"],"28,1":["28,1"],"280,1":["280,1"],"281,1":["281,1"],"282,1":["282,1"],"283,1":["283,1"],"284,1":["284,1"],"285,1":["285,1"],"286,1":["286,1"],"287,1":["287,1"],"288,1":["288,1"],"289,1":["289,1"],"29,1":["29,1"],"290,1":["290,1"],"291,1":["291,1"],"292,1":["292,1"],"293,1":["293,1"],"293,2":["293,2","293,1"],"294,1":["294,1"],"295,1":["295,1"],"295,2":["295,2","295,1"],"296,1":["296,1"],"297,1":["297,1"],"298,1":["298,1"],"299,1":["299,1"],"3,1":["3,1"],"30,1":["30,1"],"300,1":["300,1"],"301,1":["301,1"],"302,1":["302,1"],"303,1":["303,1"],"304,1":["304,1"],"305,1":["305,1"],"306,1":["306,1"],"307,1":["307,1"],"308,1":["308,1"],"309,1":["309,1"],"309,2":["309,2","309,1"],"31,1":["31,1"],"310,1":["310,1"],"310,2":["310,2","310,1"],"311,1":["311,1"],"312,1":["312,1"],"313,1":["313,1"],"314,1":["314,1"],"315,1":["315,1"],"316,1":["316,1"],"317,1":["317,1"],"317,2":["317,2","317,1"],"318,1":["318,1"],"318,2":["318,2"],"319,1":["319,1"],"319,2":["319,2","319,1"],"32,1":["32,1"],"320,1":["320,1"],"321,1":["321,1"],"322,1":["322,1"],"323,1":["323,1"],"324,1":["324,1"],"324,3":["324,3","324,1"],"325,1":["325,1"],"326,1":["326,1"],"327,1":["327,1"],"328,1":["328,1"],"328,3":["328,3","328,1"],"329,1":["329,1"],"33,1":["33,1"],"330,1":["330,1"],"331,1":["331,1"],"332,1":["332,1"],"333,1":["333,1"],"334,1":["334,1"],"335,1":["335,1"],"335,2":["335,2","335,1"],"336,1":["336,1"],"337,1":["337,1"],"338,1":["338,1"],"339,1":["339,1"],"34,1":["34,1"],"340,1":["340,1"],"341,2":["341,2"],"342,1":["342,1"],"343,1":["343,1"],"344,1":["344,1"],"345,2":["345,2"],"346,1":["346,1"],"347,1":["347,1"],"348,1":["348,1"],"349,2":["349,2"],"35,1":["35,1"],"350,1":["350,1"],"350,2":["350,2","350,1"],"351,1":["351,1"],"352,2":["352,2"],"353,1":["353,1"],"354,1":["354,1"],"355,1":["355,1"],"356,1":["356,1"],"357,1":["357,1"],"358,1":["358,1"],"359,1":["359,1"],"36,1":["36,1"],"360,1":["360,1"],"361,1":["361,1"],"361,2":["361,2","361,1"],"362,1":["362,1"],"363,1":["363,1"],"364,1":["364,1"],"365,1":["365,1"],"366,1":["366,1"],"367,1":["367,1"],"368,1":["368,1"],"369,1":["369,1"],"37,1":["37,1"],"370,1":["370,1"],"370,2":["370,2"],"371,1":["371,1"],"372,1":["372,1"],"373,1":["373,1"],"374,1":["374,1"],"375,1":["375,1"],"376,1":["376,1"],"377,1":["377,1"],"378,1":["378,1"],"379,1":["379,1"],"38,1":["38,1"],"380,1":["380,1"],"381,1":["381,1"],"382,1":["382,1"],"382,2":["382,2"],"383,1":["383,1"],"384,1":["384,1"],"385,1":["385,1"],"385,2":["385,2","385,1"],"386,1":["386,1"],"387,1":["387,1"],"388,1":["388,1"],"389,1":["389,1"],"39,1":["39,1"],"39,2":["39,2","39,1"],"390,1":["390,1"],"391,1":["391,1"],"392,1":["392,1"],"393,1":["393,1"],"394,1":["394,1"],"395,1":["395,1"],"396,1":["396,1"],"397,1":["397,1"],"398,1":["398,1"],"399,1":["399,1"],"4,1":["4,1"],"40,1":["40,1"],"400,1":["400,1"],"401,1":["401,1"],"402,1":["402,1"],"403,1":["403,1"],"404,1":["404,1"],"405,1":["405,1"],"406,1":["406,1"],"406,2":["406,2"],"407,1":["407,1"],"408,1":["408,1"],"409,1":["409,1"],"41,1":["41,1"],"410,1":["410,1"],"411,1":["411,1"],"412,1":["412,1"],"413,1":["413,1"],"413,2":["413,2","413,1"],"414,1":["414,1"],"415,1":["415,1"],"416,1":["416,1"],"417,1":["417,1"],"417,2":["417,2","417,1"],"418,1":["418,1"],"418,2":["418,2","418,1"],"419,1":["419,1"],"42,1":["42,1"],"420,1":["420,1"],"421,1":["421,1"],"422,1":["422,1"],"423,1":["423,1"],"424,1":["424,1"],"425,1":["425,1"],"426,1":["426,1"],"427,1":["427,1"],"428,1":["428,1"],"429,1":["429,1"],"43,1":["43,1"],"430,1":["430,1"],"431,1":["431,1"],"432,1":["432,1"],"433,1":["433,1"],"434,1":["434,1"],"435,1":["435,1"],"436,1":["436,1"],"437,1":["437,1"],"438,1":["438,1"],"439,1":["439,1"],"44,2":["44,2"],"440,1":["440,1"],"441,1":["441,1"],"442,1":["442,1"],"443,1":["443,1"],"444,1":["444,1"],"445,1":["445,1"],"446,1":["446,1"],"447,1":["447,1"],"448,1":["448,1"],"449,1":["449,1"],"45,1":["45,1"],"450,1":["450,1"],"451,1":["451,1"],"452,1":["452,1"],"453,1":["453,1"],"454,1":["454,1"],"455,1":["455,1"],"456,1":["456,1"],"457,1":["457,1"],"458,1":["458,1"],"459,1":["459,1"],"459,2":["459,2"],"46,1":["46,1"],"460,1":["460,1"],"461,1":["461,1"],"462,1":["462,1"],"463,1":["463,1"],"464,1":["464,1"],"465,1":["465,1"],"466,1":["466,1"],"467,1":["467,1"],"468,1":["468,1"],"469,1":["469,1"],"47,1":["47,1"],"470,1":["470,1"],"471,1":["471,1"],"472,1":["472,1"],"473,1":["473,1"],"474,1":["474,1"],"475,1":["475,1"],"476,1":["476,1"],"477,1":["477,1"],"478,1":["478,1"],"479,1":["479,1"],"48,1":["48,1"],"480,1":["480,1"],"481,1":["481,1"],"482,1":["482,1"],"483,1":["483,1"],"484,1":["484,1"],"485,1":["485,1"],"486,1":["486,1"],"487,1":["487,1"],"488,1":["488,1"],"489,1":["489,1"],"49,1":["49,1"],"490,1":["490,1"],"491,1":["491,1"],"492,1":["492,1"],"493,1":["493,1"],"493,2":["493,2"],"493,3":["493,3","493,2","493,1"],"493,4":["493,4"],"494,2":["494,2"],"495,1":["495,1"],"496,1":["496,1"],"497,1":["497,1"],"497,2":["497,2"],"498,1":["498,1"],"499,1":["499,1"],"5,1":["5,1"],"50,1":["50,1"],"500,1":["500,1"],"500,2":["500,2","500,1"],"501,1":["501,1"],"502,1":["502,1"],"503,1":["503,1"],"504,1":["504,1"],"505,1":["505,1"],"506,1":["506,1"],"507,1":["507,1"],"508,1":["508,1"],"509,1":["509,1"],"51,1":["51,1"],"510,1":["510,1"],"511,1":["511,1"],"512,1":["512,1"],"513,1":["513,1"],"514,1":["514,1"],"515,1":["515,1"],"515,2":["515,2","515,1"],"516,1":["516,1"],"517,1":["517,1"],"518,1":["518,1"],"519,1":["519,1"],"52,1":["52,1"],"520,1":["520,1"],"521,1":["521,1"],"522,1":["522,1"],"523,1":["523,1"],"524,1":["524,1"],"525,1":["525,1"],"526,1":["526,1"],"527,1":["527,1"],"528,1":["528,1"],"529,1":["529,1"],"53,1":["53,1"],"530,1":["530,1"],"531,1":["531,1"],"532,1":["532,1"],"533,1":["533,1"],"534,1":["534,1"],"535,1":["535,1"],"536,1":["536,1"],"537,1":["537,1"],"538,1":["538,1"],"539,1":["539,1"],"54,1":["54,1"],"540,1":["540,1"],"541,1":["541,1"],"542,1":["542,1"],"543,1":["543,1"],"544,1":["544,1"],"545,1":["545,1"],"546,1":["546,1"],"547,1":["547,1"],"548,1":["548,1"],"549,1":["549,1"],"55,1":["55,1"],"550,1":["550,1"],"551,1":["551,1"],"552,1":["552,1"],"553,1":["553,1"],"554,1":["554,1"],"555,1":["555,1"],"556,1":["556,1"],"556,2":["556,2"],"557,1":["557,1"],"558,1":["558,1"],"558,2":["558,2","558,1"],"559,1":["559,1"],"56,1":["56,1"],"560,1":["560,1"],"561,1":["561,1"],"562,1":["562,1"],"563,1":["563,1"],"564,1":["564,1"],"565,1":["565,1"],"566,1":["566,1"],"567,1":["567,1"],"568,1":["568,1"],"569,1":["569,1"],"57,1":["57,1"],"570,1":["570,1"],"571,1":["571,1"],"572,1":["572,1"],"573,1":["573,1"],"574,1":["574,1"],"575,1":["575,1"],"576,1":["576,1"],"577,1":["577,1"],"578,1":["578,1"],"579,1":["579,1"],"58,1":["58,1"],"580,1":["580,1"],"581,1":["581,1"],"582,1":["582,1"],"583,1":["583,1"],"584,1":["584,1"],"585,1":["585,1"],"586,1":["586,1"],"586,2":["586,2"],"587,2":["587,2"],"588,2":["588,2"],"589,1":["589,1"],"59,1":["59,1"],"590,2":["590,2"],"591,2":["591,2"],"592,2":["592,2"],"593,2":["593,2"],"594,2":["594,2"],"595,1":["595,1"],"596,2":["596,2"],"597,2":["597,2"],"597,3":["597,3","597,2"],"598,2":["598,2"],"599,2":["599,2"],"6,1":["6,1"],"60,1":["60,1"],"600,1":["600,1"],"601,2":["601,2"],"602,2":["602,2"],"603,1":["603,1"],"604,2":["604,2"],"605,2":["605,2"],"606,1":["606,1"],"607,1":["607,1"],"608,1":["608,1"],"609,2":["609,2"],"61,1":["61,1"],"610,1":["610,1"],"611,3":["611,3"],"612,2":["612,2"],"613,2":["613,2"],"614,2":["614,2"],"615,2":["615,2"],"615,3":["615,3"],"616,2":["616,2"],"617,1":["617,1"],"617,3":["617,3","617,1"],"618,2":["618,2"],"619,2":["619,2"],"62,1":["62,1"],"620,2":["620,2"],"621,2":["621,2"],"622,2":["622,2"],"623,1":["623,1"],"624,2":["624,2"],"625,2":["625,2"],"626,2":["626,2"],"627,2":["627,2"],"628,2":["628,2"],"629,2":["629,2"],"63,1":["63,1"],"630,1":["630,1"],"631,2":["631,2"],"632,2":["632,2"],"632,3":["632,3"],"633,1":["633,1"],"634,2":["634,2"],"634,3":["634,3"],"635,2":["635,2"],"636,2":["636,2"],"636,3":["636,3","636,2"],"637,2":["637,2"],"638,2":["638,2"],"639,1":["639,1"],"64,1":["64,1"],"640,2":["640,2"],"641,1":["641,1"],"642,2":["642,2"],"643,2":["643,2"],"644,1":["644,1"],"645,2":["645,2"],"646,2":["646,2"],"647,2":["647,2"],"648,2":["648,2"],"649,2":["649,2"],"65,1":["65,1"],"650,2":["650,2"],"651,1":["651,1"],"652,1":["652,1"],"653,2":["653,2"],"654,2":["654,2"],"655,2":["655,2"],"656,2":["656,2"],"657,2":["657,2"],"658,2":["658,2"],"659,2":["659,2"],"66,1":["66,1"],"660,2":["660,2"],"661,2":["661,2"],"662,2":["662,2"],"663,1":["663,1"],"664,2":["664,2"],"665,2":["665,2"],"666,2":["666,2"],"667,2":["667,2"],"668,1":["668,1"],"669,2":["669,2"],"67,1":["67,1"],"670,2":["670,2"],"671,2":["671,2"],"672,2":["672,2"],"673,2":["673,2"],"674,2":["674,2"],"675,2":["675,2"],"676,2":["676,2"],"677,2":["677,2"],"678,1":["678,1"],"679,2":["679,2"],"68,1":["68,1"],"680,1":["680,1"],"681,2":["681,2"],"682,2":["682,2"],"683,2":["683,2"],"684,2":["684,2"],"685,2":["685,2"],"685,3":["685,3","685,2"],"686,2":["686,2"],"687,1":["687,1"],"688,2":["688,2"],"689,2":["689,2"],"69,1":["69,1"],"690,2":["690,2"],"691,2":["691,2"],"692,2":["692,2"],"693,2":["693,2"],"694,2":["694,2"],"695,2":["695,2"],"696,1":["696,1"],"697,2":["697,2"],"698,2":["698,2"],"699,2":["699,2"],"7,1":["7,1"],"70,1":["70,1"],"700,2":["700,2"],"701,2":["701,2"],"702,2":["702,2"],"703,1":["703,1"],"704,2":["704,2"],"705,2":["705,2"],"706,1":["706,1"],"707,2":["707,2"],"708,2":["708,2"],"709,2":["709,2"],"71,1":["71,1"],"710,1":["710,1"],"711,2":["711,2"],"712,2":["712,2"],"713,2":["713,2"],"714,2":["714,2"],"715,2":["715,2"],"716,1":["716,1"],"717,2":["717,2"],"718,2":["718,2"],"719,1":["719,1"],"72,1":["72,1"],"720,2":["720,2"],"721,1":["721,1"],"722,2":["722,2"],"723,2":["723,2"],"724,2":["724,2"],"725,2":["725,2"],"726,1":["726,1"],"727,2":["727,2"],"728,2":["728,2"],"729,2":["729,2"],"73,1":["73,1"],"73,2":["73,2","73,1"],"730,1":["730,1"],"731,1":["731,1"],"732,1":["732,1"],"733,2":["733,2"],"734,2":["734,2"],"735,2":["735,2"],"736,3":["736,3"],"737,2":["737,2"],"737,3":["737,3","737,2"],"738,2":["738,2"],"739,2":["739,2"],"74,1":["74,1"],"740,1":["740,1"],"741,2":["741,2"],"742,1":["742,1"],"743,2":["743,2"],"744,2":["744,2"],"745,1":["745,1"],"746,2":["746,2"],"747,2":["747,2"],"748,1":["748,1"],"749,1":["749,1"],"75,1":["75,1"],"750,2":["750,2"],"751,1":["751,1"],"752,2":["752,2"],"753,2":["753,2"],"754,2":["754,2"],"755,2":["755,2"],"756,2":["756,2"],"757,2":["757,2"],"758,2":["758,2"],"759,2":["759,2"],"76,1":["76,1"],"76,2":["76,2","76,1"],"760,1":["760,1"],"761,2":["761,2"],"762,2":["762,2"],"762,3":["762,3","762,2"],"763,2":["763,2"],"764,2":["764,2"],"765,2":["765,2"],"766,1":["766,1"],"767,2":["767,2"],"768,2":["768,2"],"769,2":["769,2"],"77,1":["77,1"],"770,2":["770,2"],"771,1":["771,1"],"772,2":["772,2"],"773,2":["773,2"],"774,2":["774,2"],"775,1":["775,1"],"776,2":["776,2"],"777,2":["777,2"],"777,3":["777,3"],"777,4":["777,4"],"778,1":["778,1"],"779,1":["779,1"],"78,1":["78,1"],"780,1":["780,1"],"780,3":["780,3"],"781,2":["781,2"],"782,3":["782,3"],"783,1":["783,1"],"784,2":["784,2"],"785,2":["785,2"],"786,2":["786,2"],"787,2":["787,2"],"788,1":["788,1"],"789,2":["789,2"],"79,1":["79,1"],"790,2":["790,2"],"791,2":["791,2"],"792,2":["792,2"],"793,2":["793,2"],"794,2":["794,2"],"795,2":["795,2"],"796,2":["796,2"],"797,2":["797,2"],"798,1":["798,1"],"799,2":["799,2"],"8,1":["8,1"],"80,1":["80,1"],"800,2":["800,2"],"801,1":["801,1"],"802,1":["802,1"],"803,1":["803,1"],"803,3":["803,3","803,1"],"804,2":["804,2"],"805,2":["805,2"],"806,2":["806,2"],"807,1":["807,1"],"808,1":["808,1"],"809,2":["809,2"],"81,1":["81,1"],"810,1":["810,1"],"811,2":["811,2"],"812,2":["812,2"],"813,2":["813,2"],"814,2":["814,2"],"815,1":["815,1"],"815,3":["815,3","815,1"],"816,2":["816,2"],"817,2":["817,2"],"818,2":["818,2"],"819,2":["819,2"],"82,1":["82,1"],"820,2":["820,2"],"821,2":["821,2"],"822,2":["822,2"],"823,1":["823,1"],"824,2":["824,2"],"825,2":["825,2"],"826,2":["826,2"],"827,2":["827,2"],"828,2":["828,2"],"829,2":["829,2"],"83,1":["83,1"],"830,2":["830,2"],"831,1":["831,1"],"832,2":["832,2"],"833,2":["833,2"],"834,1":["834,1"],"835,2":["835,2"],"836,2":["836,2"],"837,1":["837,1"],"837,3":["837,3","837,1"],"838,2":["838,2"],"839,2":["839,2"],"84,1":["84,1"],"840,2":["840,2"],"841,2":["841,2"],"842,1":["842,1"],"843,2":["843,2"],"844,1":["844,1"],"845,2":["845,2"],"846,1":["846,1"],"847,2":["847,2"],"848,2":["848,2"],"849,1":["849,1"],"85,1":["85,1"],"850,2":["850,2"],"851,2":["851,2"],"852,2":["852,2"],"853,2":["853,2"],"854,2":["854,2"],"855,2":["855,2"],"856,2":["856,2"],"857,2":["857,2"],"858,2":["858,2"],"859,2":["859,2"],"86,1":["86,1"],"860,2":["860,2"],"861,2":["861,2"],"862,2":["862,2"],"863,1":["863,1"],"864,2":["864,2"],"865,2":["865,2"],"866,2":["866,2"],"867,2":["867,2"],"868,2":["868,2"],"869,2":["869,2"],"87,1":["87,1"],"870,2":["870,2"],"871,2":["871,2"],"872,2":["872,2"],"873,2":["873,2"],"874,1":["874,1"],"875,1":["875,1"],"876,2":["876,2"],"877,2":["877,2"],"878,2":["878,2"],"879,1":["879,1"],"88,1":["88,1"],"880,2":["880,2"],"881,2":["881,2"],"882,1":["882,1"],"883,2":["883,2"],"884,2":["884,2"],"885,3":["885,3"],"886,2":["886,2"],"887,1":["887,1"],"888,2":["888,2"],"889,2":["889,2"],"89,1":["89,1"],"890,2":["890,2"],"891,2":["891,2"],"892,2":["892,2"],"893,2":["893,2"],"894,2":["894,2"],"895,2":["895,2"],"896,2":["896,2"],"897,2":["897,2"],"898,2":["898,2"],"899,2":["899,2"],"9,1":["9,1"],"90,1":["90,1"],"900,2":["900,2"],"901,2":["901,2"],"902,1":["902,1"],"903,1":["903,1"],"904,2":["904,2"],"905,2":["905,2"],"906,2":["906,2"],"907,2":["907,2"],"908,2":["908,2"],"909,2":["909,2"],"91,1":["91,1"],"91,2":["91,2","91,1"],"91,3":["91,3"],"910,2":["910,2"],"911,2":["911,2"],"912,2":["912,2"],"913,1":["913,1"],"914,2":["914,2"],"915,2":["915,2"],"915,3":["915,3","915,2"],"916,2":["916,2"],"917,2":["917,2"],"918,2":["918,2"],"919,1":["919,1"],"92,1":["92,1"],"920,2":["920,2"],"921,2":["921,2"],"922,2":["922,2"],"923,2":["923,2"],"924,2":["924,2"],"925,1":["925,1"],"925,3":["925,3","925,1"],"926,2":["926,2"],"927,1":["927,1"],"927,3":["927,3","927,1"],"928,2":["928,2"],"929,2":["929,2"],"93,1":["93,1"],"93,2":["93,2","93,1"],"93,3":["93,3","93,2","93,1"],"930,2":["930,2"],"931,2":["931,2"],"932,2":["932,2"],"933,2":["933,2"],"934,2":["934,2"],"935,2":["935,2"],"936,2":["936,2"],"937,2":["937,2"],"938,2":["938,2"],"939,1":["939,1"],"94,1":["94,1"],"940,2":["940,2"],"941,2":["941,2"],"942,2":["942,2"],"943,1":["943,1"],"944,2":["944,2"],"945,2":["945,2"],"946,2":["946,2"],"947,1":["947,1"],"948,2":["948,2"],"949,2":["949,2"],"95,1":["95,1"],"950,2":["950,2"],"951,2":["951,2"],"952,2":["952,2"],"953,2":["953,2"],"954,2":["954,2"],"954,3":["954,3","954,2"],"955,1":["955,1"],"956,2":["956,2"],"957,2":["957,2"],"958,2":["958,2"],"959,2":["959,2"],"96,1":["96,1"],"960,1":["960,1"],"961,2":["961,2"],"962,2":["962,2"],"963,2":["963,2"],"964,2":["964,2"],"965,2":["965,2"],"966,2":["966,2"],"967,2":["967,2"],"968,1":["968,1"],"969,2":["969,2"],"969,3":["969,3"],"969,4":["969,4","969,2","969,3"],"97,1":["97,1"],"970,2":["970,2"],"971,2":["971,2"],"972,1":["972,1"],"973,1":["973,1"],"973,3":["973,3","973,1"],"974,2":["974,2"],"974,3":["974,3","974,2"],"975,2":["975,2"],"976,2":["976,2"],"977,2":["977,2"],"978,2":["978,2"],"979,2":["979,2"],"98,1":["98,1"],"980,1":["980,1"],"981,1":["981,1"],"982,2":["982,2"],"983,2":["983,2"],"984,2":["984,2"],"985,2":["985,2"],"986,1":["986,1"],"987,2":["987,2"],"988,2":["988,2"],"989,2":["989,2"],"99,1":["99,1"],"99,2":["99,2","99,1"],"990,2":["990,2"],"991,2":["991,2"],"992,2":["992,2"],"993,2":["993,2"],"994,1":["994,1"],"995,2":["995,2"],"996,2":["996,2"],"997,2":["997,2"],"998,1":["998,1"],"999,2":["999,2"]},"_node_equivalences":{"#END#":"#END#","#START#":"#START#","1,1":"1,1","10,1":"10,1","100,1":"100,1","1000,2":"1000,2","1001,2":"1001,2","1002,2":"1002,2","1003,2":"1003,3","1003,3":"1003,3","1004,2":"1004,2","1004,3":"1004,3","1005,2":"1005,2","1006,2":"1006,2","1007,2":"1007,2","1008,2":"1008,2","1009,2":"1009,2","101,1":"101,1","1010,1":"1010,1","1011,2":"1011,2","1012,2":"1012,2","1013,3":"1013,3","1013,4":"1013,4","102,2":"102,2","103,1":"103,1","104,1":"104,1","105,1":"105,1","106,1":"106,1","107,1":"107,1","108,1":"108,1","109,1":"109,1","11,1":"11,1","110,1":"110,2","110,2":"110,2","111,1":"111,1","112,1":"112,1","113,1":"113,1","114,1":"114,1","115,1":"115,1","116,2":"116,2","117,1":"117,1","118,1":"118,1","119,1":"119,1","12,1":"12,1","120,1":"120,1","121,1":"121,1","122,1":"122,1","123,1":"123,1","124,1":"124,1","125,1":"125,1","126,1":"126,1","127,1":"127,1","128,1":"128,1","129,1":"129,1","13,1":"13,1","130,1":"130,1","131,1":"131,1","132,1":"132,1","133,1":"133,1","134,1":"134,1","135,1":"135,1","136,1":"136,2","136,2":"136,2","137,1":"137,1","138,1":"138,1","139,1":"139,1","14,1":"14,1","140,1":"140,1","141,1":"141,1","142,1":"142,2","142,2":"142,2","143,1":"143,1","144,1":"144,1","145,1":"145,1","146,1":"146,1","147,1":"147,1","148,1":"148,1","149,1":"149,1","15,1":"15,1","150,1":"150,1","151,1":"151,1","152,1":"152,1","153,1":"153,1","154,1":"154,1","155,1":"155,3","155,2":"155,3","155,3":"155,3","156,1":"156,1","157,1":"157,1","158,1":"158,1","159,1":"159,1","16,1":"16,1","160,1":"160,1","161,1":"161,1","162,1":"162,1","163,1":"163,1","164,1":"164,1","165,1":"165,1","166,1":"166,1","167,1":"167,1","168,1":"168,1","169,1":"169,1","17,1":"17,1","170,1":"170,2","170,2":"170,2","171,1":"171,1","172,1":"172,1","173,1":"173,1","174,2":"174,2","175,1":"175,1","176,1":"176,1","177,1":"177,1","178,1":"178,1","179,1":"179,1","18,1":"18,1","180,1":"180,1","181,1":"181,1","182,1":"182,2","182,2":"182,2","183,1":"183,1","184,1":"184,1","185,1":"185,1","186,1":"186,1","187,1":"187,1","188,1":"188,1","189,1":"189,1","19,1":"19,1","190,1":"190,1","191,1":"191,1","192,1":"192,1","193,1":"193,1","194,1":"194,1","195,1":"195,1","196,1":"196,1","197,1":"197,1","198,1":"198,1","199,1":"199,1","2,1":"2,1","2,2":"2,1","20,1":"20,1","200,1":"200,1","201,1":"201,1","202,1":"202,1","203,1":"203,1","204,1":"204,1","205,2":"205,2","205,3":"205,6","205,4":"205,4","205,5":"205,5","205,6":"205,6","206,1":"206,1","207,1":"207,1","208,1":"208,1","209,1":"209,1","21,1":"21,1","210,1":"210,1","211,1":"211,1","212,1":"212,1","213,1":"213,1","214,1":"214,1","215,1":"215,1","216,1":"216,1","217,1":"217,1","218,1":"218,1","219,1":"219,2","219,2":"219,2","22,1":"22,1","220,1":"220,1","221,1":"221,1","222,1":"222,1","223,1":"223,1","224,1":"224,1","225,1":"225,1","226,1":"226,1","227,1":"227,1","228,1":"228,1","229,1":"229,1","23,1":"23,1","230,1":"230,1","231,1":"231,1","232,1":"232,1","233,1":"233,1","234,1":"234,1","235,1":"235,1","236,1":"236,1","237,1":"237,1","238,1":"238,1","239,1":"239,1","239,2":"239,2","24,1":"24,1","240,1":"240,1","241,1":"241,1","242,1":"242,1","243,1":"243,1","244,1":"244,2","244,2":"244,2","245,1":"245,1","245,2":"245,2","246,1":"246,1","247,1":"247,1","248,1":"248,1","249,1":"249,1","25,1":"25,1","250,1":"250,1","251,1":"251,1","251,2":"251,2","252,1":"252,1","253,1":"253,1","254,1":"254,1","255,1":"255,1","256,1":"256,1","257,1":"257,1","258,1":"258,1","259,1":"259,1","26,1":"26,1","260,1":"260,1","261,1":"261,1","262,1":"262,1","263,1":"263,1","264,1":"264,1","265,1":"265,1","266,1":"266,1","267,1":"267,1","268,1":"268,1","269,1":"269,1","27,1":"27,1","270,1":"270,1","271,1":"271,1","272,1":"272,1","273,1":"273,1","274,1":"274,1","275,1":"275,1","276,1":"276,1","277,1":"277,1","278,1":"278,1","279,1":"279,1","28,1":"28,1","280,1":"280,1","281,1":"281,1","282,1":"282,1","283,1":"283,1","284,1":"284,1","285,1":"285,1","286,1":"286,1","287,1":"287,1","288,1":"288,1","289,1":"289,1","29,1":"29,1","290,1":"290,1","291,1":"291,1","292,1":"292,1","293,1":"293,2","293,2":"293,2","294,1":"294,1","295,1":"295,2","295,2":"295,2","296,1":"296,1","297,1":"297,1","298,1":"298,1","299,1":"299,1","3,1":"3,1","30,1":"30,1","300,1":"300,1","301,1":"301,1","302,1":"302,1","303,1":"303,1","304,1":"304,1","305,1":"305,1","306,1":"306,1","307,1":"307,1","308,1":"308,1","309,1":"309,2","309,2":"309,2","31,1":"31,1","310,1":"310,2","310,2":"310,2","311,1":"311,1","312,1":"312,1","313,1":"313,1","314,1":"314,1","315,1":"315,1","316,1":"316,1","317,1":"317,2","317,2":"317,2","318,1":"318,1","318,2":"318,2","319,1":"319,2","319,2":"319,2","32,1":"32,1","320,1":"320,1","321,1":"321,1","322,1":"322,1","323,1":"323,1","324,1":"324,3","324,3":"324,3","325,1":"325,1","326,1":"326,1","327,1":"327,1","328,1":"328,3","328,3":"328,3","329,1":"329,1","33,1":"33,1","330,1":"330,1","331,1":"331,1","332,1":"332,1","333,1":"333,1","334,1":"334,1","335,1":"335,2","335,2":"335,2","336,1":"336,1","337,1":"337,1","338,1":"338,1","339,1":"339,1","34,1":"34,1","340,1":"340,1","341,2":"341,2","342,1":"342,1","343,1":"343,1","344,1":"344,1","345,2":"345,2","346,1":"346,1","347,1":"347,1","348,1":"348,1","349,2":"349,2","35,1":"35,1","350,1":"350,2","350,2":"350,2","351,1":"351,1","352,2":"352,2","353,1":"353,1","354,1":"354,1","355,1":"355,1","356,1":"356,1","357,1":"357,1","358,1":"358,1","359,1":"359,1","36,1":"36,1","360,1":"360,1","361,1":"361,2","361,2":"361,2","362,1":"362,1","363,1":"363,1","364,1":"364,1","365,1":"365,1","366,1":"366,1","367,1":"367,1","368,1":"368,1","369,1":"369,1","37,1":"37,1","370,1":"370,1","370,2":"370,2","371,1":"371,1","372,1":"372,1","373,1":"373,1","374,1":"374,1","375,1":"375,1","376,1":"376,1","377,1":"377,1","378,1":"378,1","379,1":"379,1","38,1":"38,1","380,1":"380,1","381,1":"381,1","382,1":"382,1","382,2":"382,2","383,1":"383,1","384,1":"384,1","385,1":"385,2","385,2":"385,2","386,1":"386,1","387,1":"387,1","388,1":"388,1","389,1":"389,1","39,1":"39,2","39,2":"39,2","390,1":"390,1","391,1":"391,1","392,1":"392,1","393,1":"393,1","394,1":"394,1","395,1":"395,1","396,1":"396,1","397,1":"397,1","398,1":"398,1","399,1":"399,1","4,1":"4,1","40,1":"40,1","400,1":"400,1","401,1":"401,1","402,1":"402,1","403,1":"403,1","404,1":"404,1","405,1":"405,1","406,1":"406,1","406,2":"406,2","407,1":"407,1","408,1":"408,1","409,1":"409,1","41,1":"41,1","410,1":"410,1","411,1":"411,1","412,1":"412,1","413,1":"413,2","413,2":"413,2","414,1":"414,1","415,1":"415,1","416,1":"416,1","417,1":"417,2","417,2":"417,2","418,1":"418,2","418,2":"418,2","419,1":"419,1","42,1":"42,1","420,1":"420,1","421,1":"421,1","422,1":"422,1","423,1":"423,1","424,1":"424,1","425,1":"425,1","426,1":"426,1","427,1":"427,1","428,1":"428,1","429,1":"429,1","43,1":"43,1","430,1":"430,1","431,1":"431,1","432,1":"432,1","433,1":"433,1","434,1":"434,1","435,1":"435,1","436,1":"436,1","437,1":"437,1","438,1":"438,1","439,1":"439,1","44,2":"44,2","440,1":"440,1","441,1":"441,1","442,1":"442,1","443,1":"443,1","444,1":"444,1","445,1":"445,1","446,1":"446,1","447,1":"447,1","448,1":"448,1","449,1":"449,1","45,1":"45,1","450,1":"450,1","451,1":"451,1","452,1":"452,1","453,1":"453,1","454,1":"454,1","455,1":"455,1","456,1":"456,1","457,1":"457,1","458,1":"458,1","459,1":"459,1","459,2":"459,2","46,1":"46,1","460,1":"460,1","461,1":"461,1","462,1":"462,1","463,1":"463,1","464,1":"464,1","465,1":"465,1","466,1":"466,1","467,1":"467,1","468,1":"468,1","469,1":"469,1","47,1":"47,1","470,1":"470,1","471,1":"471,1","472,1":"472,1","473,1":"473,1","474,1":"474,1","475,1":"475,1","476,1":"476,1","477,1":"477,1","478,1":"478,1","479,1":"479,1","48,1":"48,1","480,1":"480,1","481,1":"481,1","482,1":"482,1","483,1":"483,1","484,1":"484,1","485,1":"485,1","486,1":"486,1","487,1":"487,1","488,1":"488,1","489,1":"489,1","49,1":"49,1","490,1":"490,1","491,1":"491,1","492,1":"492,1","493,1":"493,3","493,2":"493,3","493,3":"493,3","493,4":"493,4","494,2":"494,2","495,1":"495,1","496,1":"496,1","497,1":"497,1","497,2":"497,2","498,1":"498,1","499,1":"499,1","5,1":"5,1","50,1":"50,1","500,1":"500,2","500,2":"500,2","501,1":"501,1","502,1":"502,1","503,1":"503,1","504,1":"504,1","505,1":"505,1","506,1":"506,1","507,1":"507,1","508,1":"508,1","509,1":"509,1","51,1":"51,1","510,1":"510,1","511,1":"511,1","512,1":"512,1","513,1":"513,1","514,1":"514,1","515,1":"515,2","515,2":"515,2","516,1":"516,1","517,1":"517,1","518,1":"518,1","519,1":"519,1","52,1":"52,1","520,1":"520,1","521,1":"521,1","522,1":"522,1","523,1":"523,1","524,1":"524,1","525,1":"525,1","526,1":"526,1","527,1":"527,1","528,1":"528,1","529,1":"529,1","53,1":"53,1","530,1":"530,1","531,1":"531,1","532,1":"532,1","533,1":"533,1","534,1":"534,1","535,1":"535,1","536,1":"536,1","537,1":"537,1","538,1":"538,1","539,1":"539,1","54,1":"54,1","540,1":"540,1","541,1":"541,1","542,1":"542,1","543,1":"543,1","544,1":"544,1","545,1":"545,1","546,1":"546,1","547,1":"547,1","548,1":"548,1","549,1":"549,1","55,1":"55,1","550,1":"550,1","551,1":"551,1","552,1":"552,1","553,1":"553,1","554,1":"554,1","555,1":"555,1","556,1":"556,1","556,2":"556,2","557,1":"557,1","558,1":"558,2","558,2":"558,2","559,1":"559,1","56,1":"56,1","560,1":"560,1","561,1":"561,1","562,1":"562,1","563,1":"563,1","564,1":"564,1","565,1":"565,1","566,1":"566,1","567,1":"567,1","568,1":"568,1","569,1":"569,1","57,1":"57,1","570,1":"570,1","571,1":"571,1","572,1":"572,1","573,1":"573,1","574,1":"574,1","575,1":"575,1","576,1":"576,1","577,1":"577,1","578,1":"578,1","579,1":"579,1","58,1":"58,1","580,1":"580,1","581,1":"581,1","582,1":"582,1","583,1":"583,1","584,1":"584,1","585,1":"585,1","586,1":"586,1","586,2":"586,2","587,2":"587,2","588,2":"588,2","589,1":"589,1","59,1":"59,1","590,2":"590,2","591,2":"591,2","592,2":"592,2","593,2":"593,2","594,2":"594,2","595,1":"595,1","596,2":"596,2","597,2":"597,3","597,3":"597,3","598,2":"598,2","599,2":"599,2","6,1":"6,1","60,1":"60,1","600,1":"600,1","601,2":"601,2","602,2":"602,2","603,1":"603,1","604,2":"604,2","605,2":"605,2","606,1":"606,1","607,1":"607,1","608,1":"608,1","609,2":"609,2","61,1":"61,1","610,1":"610,1","611,3":"611,3","612,2":"612,2","613,2":"613,2","614,2":"614,2","615,2":"615,2","615,3":"615,3","616,2":"616,2","617,1":"617,3","617,3":"617,3","618,2":"618,2","619,2":"619,2","62,1":"62,1","620,2":"620,2","621,2":"621,2","622,2":"622,2","623,1":"623,1","624,2":"624,2","625,2":"625,2","626,2":"626,2","627,2":"627,2","628,2":"628,2","629,2":"629,2","63,1":"63,1","630,1":"630,1","631,2":"631,2","632,2":"632,2","632,3":"632,3","633,1":"633,1","634,2":"634,2","634,3":"634,3","635,2":"635,2","636,2":"636,3","636,3":"636,3","637,2":"637,2","638,2":"638,2","639,1":"639,1","64,1":"64,1","640,2":"640,2","641,1":"641,1","642,2":"642,2","643,2":"643,2","644,1":"644,1","645,2":"645,2","646,2":"646,2","647,2":"647,2","648,2":"648,2","649,2":"649,2","65,1":"65,1","650,2":"650,2","651,1":"651,1","652,1":"652,1","653,2":"653,2","654,2":"654,2","655,2":"655,2","656,2":"656,2","657,2":"657,2","658,2":"658,2","659,2":"659,2","66,1":"66,1","660,2":"660,2","661,2":"661,2","662,2":"662,2","663,1":"663,1","664,2":"664,2","665,2":"665,2","666,2":"666,2","667,2":"667,2","668,1":"668,1","669,2":"669,2","67,1":"67,1","670,2":"670,2","671,2":"671,2","672,2":"672,2","673,2":"673,2","674,2":"674,2","675,2":"675,2","676,2":"676,2","677,2":"677,2","678,1":"678,1","679,2":"679,2","68,1":"68,1","680,1":"680,1","681,2":"681,2","682,2":"682,2","683,2":"683,2","684,2":"684,2","685,2":"685,3","685,3":"685,3","686,2":"686,2","687,1":"687,1","688,2":"688,2","689,2":"689,2","69,1":"69,1","690,2":"690,2","691,2":"691,2","692,2":"692,2","693,2":"693,2","694,2":"694,2","695,2":"695,2","696,1":"696,1","697,2":"697,2","698,2":"698,2","699,2":"699,2","7,1":"7,1","70,1":"70,1","700,2":"700,2","701,2":"701,2","702,2":"702,2","703,1":"703,1","704,2":"704,2","705,2":"705,2","706,1":"706,1","707,2":"707,2","708,2":"708,2","709,2":"709,2","71,1":"71,1","710,1":"710,1","711,2":"711,2","712,2":"712,2","713,2":"713,2","714,2":"714,2","715,2":"715,2","716,1":"716,1","717,2":"717,2","718,2":"718,2","719,1":"719,1","72,1":"72,1","720,2":"720,2","721,1":"721,1","722,2":"722,2","723,2":"723,2","724,2":"724,2","725,2":"725,2","726,1":"726,1","727,2":"727,2","728,2":"728,2","729,2":"729,2","73,1":"73,2","73,2":"73,2","730,1":"730,1","731,1":"731,1","732,1":"732,1","733,2":"733,2","734,2":"734,2","735,2":"735,2","736,3":"736,3","737,2":"737,3","737,3":"737,3","738,2":"738,2","739,2":"739,2","74,1":"74,1","740,1":"740,1","741,2":"741,2","742,1":"742,1","743,2":"743,2","744,2":"744,2","745,1":"745,1","746,2":"746,2","747,2":"747,2","748,1":"748,1","749,1":"749,1","75,1":"75,1","750,2":"750,2","751,1":"751,1","752,2":"752,2","753,2":"753,2","754,2":"754,2","755,2":"755,2","756,2":"756,2","757,2":"757,2","758,2":"758,2","759,2":"759,2","76,1":"76,2","76,2":"76,2","760,1":"760,1","761,2":"761,2","762,2":"762,3","762,3":"762,3","763,2":"763,2","764,2":"764,2","765,2":"765,2","766,1":"766,1","767,2":"767,2","768,2":"768,2","769,2":"769,2","77,1":"77,1","770,2":"770,2","771,1":"771,1","772,2":"772,2","773,2":"773,2","774,2":"774,2","775,1":"775,1","776,2":"776,2","777,2":"777,2","777,3":"777,3","777,4":"777,4","778,1":"778,1","779,1":"779,1","78,1":"78,1","780,1":"780,1","780,3":"780,3","781,2":"781,2","782,3":"782,3","783,1":"783,1","784,2":"784,2","785,2":"785,2","786,2":"786,2","787,2":"787,2","788,1":"788,1","789,2":"789,2","79,1":"79,1","790,2":"790,2","791,2":"791,2","792,2":"792,2","793,2":"793,2","794,2":"794,2","795,2":"795,2","796,2":"796,2","797,2":"797,2","798,1":"798,1","799,2":"799,2","8,1":"8,1","80,1":"80,1","800,2":"800,2","801,1":"801,1","802,1":"802,1","803,1":"803,3","803,3":"803,3","804,2":"804,2","805,2":"805,2","806,2":"806,2","807,1":"807,1","808,1":"808,1","809,2":"809,2","81,1":"81,1","810,1":"810,1","811,2":"811,2","812,2":"812,2","813,2":"813,2","814,2":"814,2","815,1":"815,3","815,3":"815,3","816,2":"816,2","817,2":"817,2","818,2":"818,2","819,2":"819,2","82,1":"82,1","820,2":"820,2","821,2":"821,2","822,2":"822,2","823,1":"823,1","824,2":"824,2","825,2":"825,2","826,2":"826,2","827,2":"827,2","828,2":"828,2","829,2":"829,2","83,1":"83,1","830,2":"830,2","831,1":"831,1","832,2":"832,2","833,2":"833,2","834,1":"834,1","835,2":"835,2","836,2":"836,2","837,1":"837,3","837,3":"837,3","838,2":"838,2","839,2":"839,2","84,1":"84,1","840,2":"840,2","841,2":"841,2","842,1":"842,1","843,2":"843,2","844,1":"844,1","845,2":"845,2","846,1":"846,1","847,2":"847,2","848,2":"848,2","849,1":"849,1","85,1":"85,1","850,2":"850,2","851,2":"851,2","852,2":"852,2","853,2":"853,2","854,2":"854,2","855,2":"855,2","856,2":"856,2","857,2":"857,2","858,2":"858,2","859,2":"859,2","86,1":"86,1","860,2":"860,2","861,2":"861,2","862,2":"862,2","863,1":"863,1","864,2":"864,2","865,2":"865,2","866,2":"866,2","867,2":"867,2","868,2":"868,2","869,2":"869,2","87,1":"87,1","870,2":"870,2","871,2":"871,2","872,2":"872,2","873,2":"873,2","874,1":"874,1","875,1":"875,1","876,2":"876,2","877,2":"877,2","878,2":"878,2","879,1":"879,1","88,1":"88,1","880,2":"880,2","881,2":"881,2","882,1":"882,1","883,2":"883,2","884,2":"884,2","885,3":"885,3","886,2":"886,2","887,1":"887,1","888,2":"888,2","889,2":"889,2","89,1":"89,1","890,2":"890,2","891,2":"891,2","892,2":"892,2","893,2":"893,2","894,2":"894,2","895,2":"895,2","896,2":"896,2","897,2":"897,2","898,2":"898,2","899,2":"899,2","9,1":"9,1","90,1":"90,1","900,2":"900,2","901,2":"901,2","902,1":"902,1","903,1":"903,1","904,2":"904,2","905,2":"905,2","906,2":"906,2","907,2":"907,2","908,2":"908,2","909,2":"909,2","91,1":"91,2","91,2":"91,2","91,3":"91,3","910,2":"910,2","911,2":"911,2","912,2":"912,2","913,1":"913,1","914,2":"914,2","915,2":"915,3","915,3":"915,3","916,2":"916,2","917,2":"917,2","918,2":"918,2","919,1":"919,1","92,1":"92,1","920,2":"920,2","921,2":"921,2","922,2":"922,2","923,2":"923,2","924,2":"924,2","925,1":"925,3","925,3":"925,3","926,2":"926,2","927,1":"927,3","927,3":"927,3","928,2":"928,2","929,2":"929,2","93,1":"93,3","93,2":"93,3","93,3":"93,3","930,2":"930,2","931,2":"931,2","932,2":"932,2","933,2":"933,2","934,2":"934,2","935,2":"935,2","936,2":"936,2","937,2":"937,2","938,2":"938,2","939,1":"939,1","94,1":"94,1","940,2":"940,2","941,2":"941,2","942,2":"942,2","943,1":"943,1","944,2":"944,2","945,2":"945,2","946,2":"946,2","947,1":"947,1","948,2":"948,2","949,2":"949,2","95,1":"95,1","950,2":"950,2","951,2":"951,2","952,2":"952,2","953,2":"953,2","954,2":"954,3","954,3":"954,3","955,1":"955,1","956,2":"956,2","957,2":"957,2","958,2":"958,2","959,2":"959,2","96,1":"96,1","960,1":"960,1","961,2":"961,2","962,2":"962,2","963,2":"963,2","964,2":"964,2","965,2":"965,2","966,2":"966,2","967,2":"967,2","968,1":"968,1","969,2":"969,4","969,3":"969,4","969,4":"969,4","97,1":"97,1","970,2":"970,2","971,2":"971,2","972,1":"972,1","973,1":"973,3","973,3":"973,3","974,2":"974,3","974,3":"974,3","975,2":"975,2","976,2":"976,2","977,2":"977,2","978,2":"978,2","979,2":"979,2","98,1":"98,1","980,1":"980,1","981,1":"981,1","982,2":"982,2","983,2":"983,2","984,2":"984,2","985,2":"985,2","986,1":"986,1","987,2":"987,2","988,2":"988,2","989,2":"989,2","99,1":"99,2","99,2":"99,2","990,2":"990,2","991,2":"991,2","992,2":"992,2","993,2":"993,2","994,1":"994,1","995,2":"995,2","996,2":"996,2","997,2":"997,2","998,1":"998,1","999,2":"999,2"},"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"equivalence_graph":{"$ref":"B4405BA6-9504-11E1-93EE-8FC4A89F4671.data"},"graph":{"$ref":"B4E19A48-9504-11E1-93EE-8FC4A89F4671.data"},"scopedrels":{"Comme":{"comme":{"$ref":"B4DDAC94-9504-11E1-93EE-8FC4A89F4671.data"}},"Elle":{"elle":{"$ref":"B4D81B4E-9504-11E1-93EE-8FC4A89F4671.data"}},"Jai":{},"Je":{"je":{"$ref":"B4D587D0-9504-11E1-93EE-8FC4A89F4671.data"}},"Lois":{"lois":{"$ref":"B4DE3858-9504-11E1-93EE-8FC4A89F4671.data"}},"Méprise":{"méprise":{"$ref":"B4D3E100-9504-11E1-93EE-8FC4A89F4671.data"}},"Perd":{},"Perds":{"perds":{"$ref":"B4E0B740-9504-11E1-93EE-8FC4A89F4671.data"}},"Toi-même":{"toi-même":{"$ref":"B4D5423E-9504-11E1-93EE-8FC4A89F4671.data"}},"Tranche":{"tranche":{"$ref":"B4D8BF18-9504-11E1-93EE-8FC4A89F4671.data"}},"au":{"du":{"$ref":"B4DC6154-9504-11E1-93EE-8FC4A89F4671.data"}},"celle":{"celui":{"$ref":"B4DCA93E-9504-11E1-93EE-8FC4A89F4671.data"}},"chuchotements":{"chuchottements":{"$ref":"B4DA5C56-9504-11E1-93EE-8FC4A89F4671.data"}},"cime":{"cîme":{"$ref":"B4DA0D14-9504-11E1-93EE-8FC4A89F4671.data"}},"clairière":{"clrière":{"$ref":"B4E06B6E-9504-11E1-93EE-8FC4A89F4671.data"}},"connait":{"connaît":{"$ref":"B4DDF1CC-9504-11E1-93EE-8FC4A89F4671.data"}},"conviée":{"conviées":{"$ref":"B4DEC3C2-9504-11E1-93EE-8FC4A89F4671.data"}},"croient":{"croit":{"$ref":"B4DC18D4-9504-11E1-93EE-8FC4A89F4671.data"}},"crois":{"croit":{"$ref":"B4DCEFAC-9504-11E1-93EE-8FC4A89F4671.data"}},"de":{"des":{"$ref":"B4D90496-9504-11E1-93EE-8FC4A89F4671.data"}},"des":{"les":{"$ref":"B4D97E76-9504-11E1-93EE-8FC4A89F4671.data"}},"dur":{"dure":{"$ref":"B4DAB3C2-9504-11E1-93EE-8FC4A89F4671.data"}},"défi":{"défit":{"$ref":"B4D7D472-9504-11E1-93EE-8FC4A89F4671.data"}},"gourmandise":{"gourmandises":{"$ref":"B4DB42BA-9504-11E1-93EE-8FC4A89F4671.data"}},"granit":{"granite":{"$ref":"B4DF50C6-9504-11E1-93EE-8FC4A89F4671.data"}},"gril":{"grill":{"$ref":"B4D4B454-9504-11E1-93EE-8FC4A89F4671.data"}},"imaginer":{"simaginer":{"$ref":"B4DAF9AE-9504-11E1-93EE-8FC4A89F4671.data"}},"jai":{"je n''ai":{"$ref":"B4D61588-9504-11E1-93EE-8FC4A89F4671.data"}},"l":{"le":{"$ref":"B4DFDD70-9504-11E1-93EE-8FC4A89F4671.data"}},"les":{"mes":{"$ref":"B4D39448-9504-11E1-93EE-8FC4A89F4671.data"}},"lézard":{},"m''inspirent":{"minspire":{"$ref":"B4DF0BE8-9504-11E1-93EE-8FC4A89F4671.data"}},"n''aie":{"nai":{"$ref":"B4DD3642-9504-11E1-93EE-8FC4A89F4671.data"},"naies":{"$ref":"B4DD648C-9504-11E1-93EE-8FC4A89F4671.data"}},"n''atteins":{"natteint":{"$ref":"B4E14EA8-9504-11E1-93EE-8FC4A89F4671.data"}},"n''enrichit":{"nenrichi":{"$ref":"B4D4278C-9504-11E1-93EE-8FC4A89F4671.data"}},"n''est":{"nest":{"$ref":"B4DE7E26-9504-11E1-93EE-8FC4A89F4671.data"}},"perd":{"perds":{"$ref":"B4E104AC-9504-11E1-93EE-8FC4A89F4671.data"}},"peut":{"puisse":{"$ref":"B4D70088-9504-11E1-93EE-8FC4A89F4671.data"}},"proi":{"proie":{"$ref":"B4DF97E8-9504-11E1-93EE-8FC4A89F4671.data"}},"quel":{"quelle":{"$ref":"B4D6B812-9504-11E1-93EE-8FC4A89F4671.data"}},"rassasier":{"rassassier":{"$ref":"B4DB8A5E-9504-11E1-93EE-8FC4A89F4671.data"}},"rationaliste":{"rationnaliste":{"$ref":"B4D78E9A-9504-11E1-93EE-8FC4A89F4671.data"}},"ressens":{"ressent":{"$ref":"B4D746D8-9504-11E1-93EE-8FC4A89F4671.data"}},"seul":{"seule":{"$ref":"B4DBD194-9504-11E1-93EE-8FC4A89F4671.data"}},"subir":{"subire":{"$ref":"B4D4FACC-9504-11E1-93EE-8FC4A89F4671.data"}},"talent":{"talents":{"$ref":"B4D46B52-9504-11E1-93EE-8FC4A89F4671.data"}},"tous":{"toutes":{"$ref":"B4E0253C-9504-11E1-93EE-8FC4A89F4671.data"}},"tracque":{"traque":{"$ref":"B4D9C598-9504-11E1-93EE-8FC4A89F4671.data"}},"traqu":{"traque":{"$ref":"B4D65CB4-9504-11E1-93EE-8FC4A89F4671.data"}},"trève":{"trêve":{"$ref":"B4D861A8-9504-11E1-93EE-8FC4A89F4671.data"}},"être":{"êtres":{"$ref":"B4D5CF10-9504-11E1-93EE-8FC4A89F4671.data"}},"être humain":{}}},"id":"B440495E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::RelationshipStore',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6CDF04A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Witness","data":{"language":"Default","sigil":"T2","sourcetype":"collation","text":["Notre besoin de consolation est impossible à","rassasier","de","Stig Dagerman","Je","suis","dépourvu","de","foi","et","ne","puis","donc","être","heureux","car","un","homme","qui","risque","de","craindre","que","sa","vie","ne","soit","un","errance","absurde","vers","une","mort","certaine","ne","peut","être","heureux","Je n''ai","reçu","en","héritage","ni","dieu","ni","point","fixe","sur","la","terre","d''où","je","puisse","attirer","l''attention","d''un","dieu","On","ne","m''a","pas","non","plus","légué","la","fureur","bien","déguisée","du","sceptique","les","ruses","de","Sioux","du","rationaliste","ou","la","candeur","ardente","de","l''athée","Je","n''ose","donc","jeter","la","pierre","ni","à","celle","qui","croit","en","des","choses","qui","ne","m''inspirent","que","le","doute","ni","à","celui","qui","cultive","son","doute","comme","si","celui-ci","n''était","pas","lui","aussi","entouré","de","ténèbres","Cette","pierre","m''atteindrait","moi-même","car","je","suis","bien","certain","d''une","chose","le","besoin","de","consolation","que","connaît","l''être","humain","est","impossible","à","rassasier","En","ce","qui","me","concerne","je","traque","la","consolation","comme","le","chasseur","traque","le","gibier","Partout","où","je","crois","l''apercevoir","dans","la","forêt","je","tire","Souvent","je","n''atteins","que","le","vide","mais","une","fois","de","temps","en","temps","une","proie","tombe","à","mes","pieds","Et","comme","je","sais","que","la","consolation","ne","dure","que","le","temps","d''un","souffle","de","vent","dans","la","scime","d''un","arbre","je","me","dépêche","de","m''emparer","de","ma","victime","Qu''ai-je","alors","entre","mes","bras","Puisque","je","suis","solitaire","une","femme","aimée","ou","un","compagnon","de","voyage","malheureux","Puisque","je","suis","poète","un","arc","de","mots","que","je","ressens","de","la","joie","et","de","l''effroi","à","bander","Puisque","je","suis","prisonnier","un","aperçu","soudain","de","la","liberté","Puisque","je","suis","menacé","par","la","mort","un","animal","vivant","et","bien","chaud","un","cœur","qui","bat","de","façon","sarcastique","Puisque","je","suis","menacé","par","la","mer","un","récif","de","granit","bien","dur","Mais","il","y","a","aussi","des","consolations","qui","viennent","à","moi","sans","y","être","conviées","et","qui","remplissent","ma","chambre","de","chuchotements","odieux","Je","suis","ton","plaisir","aime-les","tous","Je","suis","ton","talent","fais-en","aussi","mauvais","usage","que","de","toi-même","Je","suis","ton","désir","de","jouissance","seuls","vivent","les","gourmets","Je","suis","ta","solitude","méprise","les","hommes","Je","suis","ton","aspiration","à","la","mort","alors","tranche","Le","fil","du","rasoir","est","bien","étroit","Je","vois","ma","vie","menacée","par","deux","périls","d''un","côté","par","les","bouches","avides","de","la","gourmandise","de","l''autre","par","l''amertume","de","l''avarice","qui","se","nourrit","d''elle-même","Mais","je","tiens","à","refuser","de","choisir","entre","l''orgie","et","l''ascèse","même","si","je","dois","pour","cela","subir","le","supplice","du","grill","de","mes","désirs","Pour","moi","il","ne","suffit","pas","de","savoir","que","puisque","nous","ne","sommes","pas","libres","de","nos","actes","tout","est","excusable","Ce","que","je","cherche","ce","n''est","pas","une","excuse","à","ma","vie","mais","exactement","le","contraire","d''une","excuse","le","pardon","L''idée","me","vient","finalement","que","toute","consolation","ne","prenant","pas","en","compte","ma","liberté","est","trompeuse","qu''elle","n''est","que","l''image","réfléchie","de","mon","désespoir","En","effet","lorsque","mon","désespoir","me","dit","Perds","confiance","car","chaque","jour","n''est","qu''une","trêve","entre","deux","nuits","la","fausse","consolation","me","crie","Espère","car","chaque","nuit","n''est","qu''une","trêve","entre","deux","jours","Mais","l''humanité","n''a","que","faire","d''une","consolation","en","forme","de","mot","d''esprit","elle","a","besoin","d''une","consolation","qui","illumine","Et","celui","qui","souhaite","devenir","mauvais","c''est-à-dire","devenir","un","homme","qui","agisse","comme","si","toutes","les","actions","étaient","défendables","doit","au","moins","avoir","la","bonté","de","le","remarquer","lorsqu''il","y","parvient","Personne","ne","peut","énumérer","tous","les","cas","où","la","consolation","est","une","nécessité","Personne","ne","sait","quand","tombera","le","crépuscule","et","la","vie","n''est","pas","un","problème","qui","puisse","être","résolu","en","divisant","la","lumière","par","l''obscurité","et","les","jours","par","les","nuits","c''est","un","voyage","imprévisible","entre","des","lieux","qui","n''existent","pas","Je","peux","par","exemple","marcher","sur","le","rivage","et","ressentir","tout","à","coup","le","défi","effroyable","que","l''éternité","lance","à","mon","existence","dans","le","mouvement","perpétuel","de","la","mer","et","dans","la","fuite","perpétuelle","du","vent","Que","devient","alors","le","temps","si","ce","n''est","une","consolation","pour","le","fait","que","rien","de","ce","qui","est","humain","ne","dure","et","quelle","misérable","consolation","qui","nenrichi","que","les","Suisses","Je","peux","rester","assis","devant","un","feu","dans","la","pièce","la","moins","exposée","de","toutes","au","danger","et","sentir","soudain","la","mort","me","cerner","Elle","se","trouve","dans","le","feu","dans","tous","les","objets","pointus","qui","m''entourent","dans","le","poids","du","toit","et","dans","la","masse","des","murs","elle","se","trouve","dans","l''eau","dans","la","neige","dans","la","chaleur","et","dans","mon","sang","Que","devient","alors","le","sentiment","humain","de","sécurité","si","ce","n''est","une","consolation","pour","le","fait","que","la","mort","est","ce","qu''il","y","a","de","plus","proche","de","la","vie","et","quelle","misérable","consolation","qui","ne","fait","que","nous","rappeler","ce","qu''elle","veut","nous","faire","oublier","Je","peux","remplir","toutes","mes","pages","blanches","avec","les","plus","belles","combinaisons","de","mots","que","puisse","simaginer","mon","cerveau","Etant","donné","que","je","cherche","à","m''assurer","que","ma","vie","n''est","pas","absurde","et","que","je","ne","suis","pas","seule","sur","la","terre","je","rassemble","tous","ces","mots","en","un","livre","et","je","l''offre","au","monde","En","retour","celui-ci","me","donne","la","richesse","la","gloire","et","le","silence","Mais","que","puis-je","bien","faire","de","cet","argent","et","quel","plaisir","puis-je","prendre","à","contribuer","au","progrès","de","la","littérature","je","ne","désire","que","ce","que","je","n''aurai","pas","confirmation","de","ce","que","mes","mots","ont","touché","le","cœur","du","monde","Que","devient","alors","mon","talent","si","ce","n''est","une","consolation","pour","le","fait","que","je","suis","seule","mais","quelle","épouvantable","consolation","qui","me","fait","simplement","ressentir","ma","solitude","cinq","fois","plus","fort","Je","peux","voir","la","liberté","incarnée","dans","un","animal","qui","traverse","rapidement","une","clairière","et","entendre","une","voix","qui","chuchote","Vis","simplement","prends","ce","que","tu","désires","et","n''aie","pas","peur","des","lois","Mais","qu''est-ce","que","ce","bon","conseil","si","ce","n''est","une","consolation","pour","le","fait","que","la","liberté","n''existe","pas","et","quelle","impitoyable","consolation","pour","celui","qui","s''avise","que","l","être humain","doit","mettre","des","millions","d''années","pour","devenir","un","lézard"],"tradition":{"$ref":"load-test.data"}},"id":"B6CDF04A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Witness',0,NULL,NULL);
+INSERT INTO "entries" VALUES('load-test','{"__CLASS__":"Text::Tradition","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"name":"Notre besoin","stemmata":[{"$ref":"B68D7312-9504-11E1-93EE-8FC4A89F4671.data"}],"witness_hash":{"A":{"$ref":"B69F422C-9504-11E1-93EE-8FC4A89F4671.data"},"B":{"$ref":"B6AA46FE-9504-11E1-93EE-8FC4A89F4671.data"},"C":{"$ref":"B6BA9AEA-9504-11E1-93EE-8FC4A89F4671.data"},"D":{"$ref":"B6C00B1A-9504-11E1-93EE-8FC4A89F4671.data"},"F":{"$ref":"B699D030-9504-11E1-93EE-8FC4A89F4671.data"},"J":{"$ref":"B6A4CC6A-9504-11E1-93EE-8FC4A89F4671.data"},"L":{"$ref":"B6C5320C-9504-11E1-93EE-8FC4A89F4671.data"},"M":{"$ref":"B6B5220E-9504-11E1-93EE-8FC4A89F4671.data"},"S":{"$ref":"B694590C-9504-11E1-93EE-8FC4A89F4671.data"},"T1":{"$ref":"B68EE4D6-9504-11E1-93EE-8FC4A89F4671.data"},"T2":{"$ref":"B6CDF04A-9504-11E1-93EE-8FC4A89F4671.data"},"U":{"$ref":"B6CA9710-9504-11E1-93EE-8FC4A89F4671.data"},"V":{"$ref":"B6AFB6F2-9504-11E1-93EE-8FC4A89F4671.data"}}},"id":"load-test","root":true}','Text::Tradition',1,NULL,'Notre besoin');
+INSERT INTO "entries" VALUES('B4ED72C8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"5,1","rank":"5","reading_lexemes":[],"text":"Je"},"id":"B4ED72C8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67DDCEA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"598,2","rank":"598","reading_lexemes":[],"text":"être"},"id":"B67DDCEA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6769C0A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"907,2","rank":"907","reading_lexemes":[],"text":"monde"},"id":"B6769C0A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B645D9D0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"973,1","rank":"973","reading_lexemes":[],"text":"les"},"id":"B645D9D0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5550F78-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"782,3","rank":"782","reading_lexemes":[],"text":"vie"},"id":"B5550F78-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B600C20A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"915,2","rank":"915","reading_lexemes":[],"text":"nest"},"id":"B600C20A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CE0C16-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"18,1","rank":"18","reading_lexemes":[],"text":"homme"},"id":"B5CE0C16-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65C2D84-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"685,3","rank":"685","reading_lexemes":[],"text":"nenrichi"},"id":"B65C2D84-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53448D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"68,1","rank":"68","reading_lexemes":[],"text":"déguisée"},"id":"B53448D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52D1BA8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"908,2","rank":"908","reading_lexemes":[],"text":"Que"},"id":"B52D1BA8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53081DA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"179,1","rank":"179","reading_lexemes":[],"text":"en"},"id":"B53081DA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6612D8E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"775,1","rank":"775","reading_lexemes":[],"text":"y"},"id":"B6612D8E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66891E6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"779,1","rank":"779","reading_lexemes":[],"text":"proche"},"id":"B66891E6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CBBCEA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"910,2","rank":"910","reading_lexemes":[],"text":"alors"},"id":"B5CBBCEA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B554515A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"600,1","rank":"600","reading_lexemes":[],"text":"en"},"id":"B554515A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B641AB94-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"927,1","rank":"927","reading_lexemes":[],"text":"quel"},"id":"B641AB94-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C89F10-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"306,1","rank":"306","reading_lexemes":[],"text":"moi"},"id":"B5C89F10-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A038F4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"756,2","rank":"756","reading_lexemes":[],"text":"sentiment"},"id":"B5A038F4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5666836-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"559,1","rank":"559","reading_lexemes":[],"text":"moins"},"id":"B5666836-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65E7FA8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"502,1","rank":"502","reading_lexemes":[],"text":"deux"},"id":"B65E7FA8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56DA704-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"844,1","rank":"844","reading_lexemes":[],"text":"ces"},"id":"B56DA704-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65DBC1C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"703,1","rank":"703","reading_lexemes":[],"text":"toutes"},"id":"B65DBC1C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51E891C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"478,1","rank":"478","reading_lexemes":[],"text":"qu''elle"},"id":"B51E891C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60494D4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"303,1","rank":"303","reading_lexemes":[],"text":"qui"},"id":"B60494D4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4FABAF0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"537,1","rank":"537","reading_lexemes":[],"text":"illumine"},"id":"B4FABAF0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67A6EDE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"377,1","rank":"377","reading_lexemes":[],"text":"d''un"},"id":"B67A6EDE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56FE820-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"129,1","rank":"129","reading_lexemes":[],"text":"d''une"},"id":"B56FE820-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67ACF8C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"565,1","rank":"565","reading_lexemes":[],"text":"remarquer"},"id":"B67ACF8C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B624EB9E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"501,1","rank":"501","reading_lexemes":[],"text":"entre"},"id":"B624EB9E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B6ED9C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"550,1","rank":"550","reading_lexemes":[],"text":"comme"},"id":"B5B6ED9C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B546B3B0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"529,1","rank":"529","reading_lexemes":[],"text":"mot"},"id":"B546B3B0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C9603A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"123,1","rank":"123","reading_lexemes":[],"text":"moi-même"},"id":"B5C9603A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B661F3F4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"444,1","rank":"444","reading_lexemes":[],"text":"je"},"id":"B661F3F4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F7B2EC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"477,1","rank":"477","reading_lexemes":[],"text":"trompeuse"},"id":"B4F7B2EC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F6DB64-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"54,1","rank":"54","reading_lexemes":[],"text":"attirer"},"id":"B5F6DB64-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54D66A6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"793,2","rank":"793","reading_lexemes":[],"text":"ce"},"id":"B54D66A6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51688D4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"29,1","rank":"29","reading_lexemes":[],"text":"errance"},"id":"B51688D4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B580328E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"540,1","rank":"540","reading_lexemes":[],"text":"qui"},"id":"B580328E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E2E3CA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"205,4","rank":"205","reading_lexemes":[],"text":"scime"},"id":"B5E2E3CA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F4AB10-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":"1","is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"586,1","rank":"586","reading_lexemes":[],"text":"#LACUNA#"},"id":"B4F4AB10-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64EABE6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"718,2","rank":"718","reading_lexemes":[],"text":"feu"},"id":"B64EABE6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F20342-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"873,2","rank":"873","reading_lexemes":[],"text":"argent"},"id":"B4F20342-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B622ED6C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"132,1","rank":"132","reading_lexemes":[],"text":"besoin"},"id":"B622ED6C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5368B70-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"417,2","rank":"417","reading_lexemes":[],"text":"gril"},"id":"B5368B70-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64A1928-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"312,1","rank":"312","reading_lexemes":[],"text":"qui"},"id":"B64A1928-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B389EA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"331,1","rank":"331","reading_lexemes":[],"text":"mauvais"},"id":"B5B389EA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B684657E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1004,2","rank":"1004","reading_lexemes":[],"text":"être humain"},"id":"B684657E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61CC8D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"965,2","rank":"965","reading_lexemes":[],"text":"que"},"id":"B61CC8D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B542E49C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"629,2","rank":"629","reading_lexemes":[],"text":"rivage"},"id":"B542E49C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B575EB76-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1013,3","rank":"1013","reading_lexemes":[],"text":"lézard"},"id":"B575EB76-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D67F04-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"976,2","rank":"976","reading_lexemes":[],"text":"qu''est-ce"},"id":"B5D67F04-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6343036-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"840,2","rank":"840","reading_lexemes":[],"text":"terre"},"id":"B6343036-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D94964-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"507,1","rank":"507","reading_lexemes":[],"text":"me"},"id":"B5D94964-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5728940-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"519,1","rank":"519","reading_lexemes":[],"text":"Mais"},"id":"B5728940-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C83E8A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"110,1","rank":"110","reading_lexemes":[],"text":"Comme"},"id":"B5C83E8A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B556F040-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"643,2","rank":"643","reading_lexemes":[],"text":"existence"},"id":"B556F040-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B507A0D0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"509,1","rank":"509","reading_lexemes":[],"text":"Espère"},"id":"B507A0D0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F15CAC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"898,2","rank":"898","reading_lexemes":[],"text":"ce"},"id":"B5F15CAC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4FCA0CC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"73,1","rank":"73","reading_lexemes":[],"text":"de"},"id":"B4FCA0CC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B593801E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"951,2","rank":"951","reading_lexemes":[],"text":"traverse"},"id":"B593801E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4EA0ED0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"285,1","rank":"285","reading_lexemes":[],"text":"suis"},"id":"B4EA0ED0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B557B11A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"97,1","rank":"97","reading_lexemes":[],"text":"qui"},"id":"B557B11A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B524F734-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"121,1","rank":"121","reading_lexemes":[],"text":"pierre"},"id":"B524F734-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A706A2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"539,1","rank":"539","reading_lexemes":[],"text":"celui"},"id":"B5A706A2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57906B2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1004,3","rank":"1004","reading_lexemes":[],"text":"lézard"},"id":"B57906B2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5AB4082-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"776,2","rank":"776","reading_lexemes":[],"text":"a"},"id":"B5AB4082-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D9C598-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"traque","reading_b":"tracque","scope":"global","type":"spelling"},"id":"B4D9C598-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5740B12-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"325,1","rank":"325","reading_lexemes":[],"text":"Je"},"id":"B5740B12-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B526DE82-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"408,1","rank":"408","reading_lexemes":[],"text":"si"},"id":"B526DE82-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6330B20-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"51,1","rank":"51","reading_lexemes":[],"text":"d''où"},"id":"B6330B20-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DF50C6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"granite","reading_b":"granit","scope":"global","type":"spelling"},"id":"B4DF50C6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52F5F80-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"911,2","rank":"911","reading_lexemes":[],"text":"mon"},"id":"B52F5F80-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B659E5BA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"270,1","rank":"270","reading_lexemes":[],"text":"un"},"id":"B659E5BA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F386AE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"673,2","rank":"673","reading_lexemes":[],"text":"de"},"id":"B4F386AE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B602ACF0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"447,1","rank":"447","reading_lexemes":[],"text":"n''est"},"id":"B602ACF0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D1723E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"615,3","rank":"615","reading_lexemes":[],"text":"imprévisible"},"id":"B5D1723E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62BCAB8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"595,1","rank":"595","reading_lexemes":[],"text":"problème"},"id":"B62BCAB8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F67AAC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"491,1","rank":"491","reading_lexemes":[],"text":"me"},"id":"B5F67AAC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5273BAC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"218,1","rank":"218","reading_lexemes":[],"text":"entre"},"id":"B5273BAC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6858BC0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"574,1","rank":"574","reading_lexemes":[],"text":"les"},"id":"B6858BC0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52875DA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"290,1","rank":"290","reading_lexemes":[],"text":"un"},"id":"B52875DA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B505BD4C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"760,1","rank":"760","reading_lexemes":[],"text":"si"},"id":"B505BD4C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57FCF6A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"690,2","rank":"690","reading_lexemes":[],"text":"peux"},"id":"B57FCF6A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6073C98-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"998,1","rank":"998","reading_lexemes":[],"text":"pour"},"id":"B6073C98-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C10B60-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"215,1","rank":"215","reading_lexemes":[],"text":"victime"},"id":"B5C10B60-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5684930-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"356,1","rank":"356","reading_lexemes":[],"text":"aspiration"},"id":"B5684930-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6408638-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"735,2","rank":"735","reading_lexemes":[],"text":"des"},"id":"B6408638-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62736D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"173,1","rank":"173","reading_lexemes":[],"text":"vide"},"id":"B62736D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67E3D48-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"765,2","rank":"765","reading_lexemes":[],"text":"consolation"},"id":"B67E3D48-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53327D2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"145,1","rank":"145","reading_lexemes":[],"text":"qui"},"id":"B53327D2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B595BDFC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"619,2","rank":"619","reading_lexemes":[],"text":"qui"},"id":"B595BDFC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F996AC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"730,1","rank":"730","reading_lexemes":[],"text":"toit"},"id":"B4F996AC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B558D086-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"475,1","rank":"475","reading_lexemes":[],"text":"liberté"},"id":"B558D086-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5EFD58A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"468,1","rank":"468","reading_lexemes":[],"text":"consolation"},"id":"B5EFD58A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B537AFDC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"328,3","rank":"328","reading_lexemes":[],"text":"talent"},"id":"B537AFDC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60AB9C2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"286,1","rank":"286","reading_lexemes":[],"text":"menacé"},"id":"B60AB9C2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B4A97E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"229,1","rank":"229","reading_lexemes":[],"text":"un"},"id":"B5B4A97E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51B2146-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"423,1","rank":"423","reading_lexemes":[],"text":"il"},"id":"B51B2146-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6B5220E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Witness","data":{"language":"Default","sigil":"M","sourcetype":"collation","text":["Notre besoin de consolation est impossible à","rassassier","de","Stig Dagerman","Je","suis","dépourvu","de","foi","et","ne","puis","donc","être","heureux","car","un","homme","qui","risque","de","craindre","que","sa","vie","ne","soit","errance","absurde","vers","une","mort","certaine","ne","peut","être","heureux","Jai","reçu","en","héritage","ni","dieu","ni","point","fixe","sur","la","terre","d''où","je","puisse","attirer","l''attention","d''un","dieu","On","ne","m''a","pas","non","plus","légué","la","fureur","bien","déguisée","du","sceptique","les","ruses","des","Sioux","du","rationaliste","ou","la","candeur","ardente","de","l''athée","Je","n''ose","donc","jeter","la","pierre","ni","à","celui","qui","croit","des","choses","qui","ne","m''inspirent","que","le","doute","ni","à","celui","qui","cultive","son","doute","comme","si","celui-ci","n''était","pas","lui","aussi","de","ténèbres","Cette","pierre","m''atteindrait","moi-même","car","je","suis","bien","certain","d''une","chose","le","besoin","de","consolation","que","connait","l''être","humain","est","impossible","à","rassassier","En","ce","qui","me","concerne","je","traque","la","consolation","comme","le","chasseur","traque","le","gibier","Partout","où","je","crois","l''apercevoir","dans","la","forêt","je","tire","Souvent","je","n''atteins","que","le","vide","mais","une","fois","de","temps","en","temps","une","proi","tombe","à","mes","pieds","Et","comme","je","sais","que","la","consolation","ne","dure","que","le","temps","d''un","souffle","de","vent","dans","la","nime","d''un","arbre","je","me","dépêche","de","m''emparer","de","ma","victime","Qu''ai-je","alors","entre","mes","bras","Puisque","je","suis","solitaire","une","femme","aimée","ou","un","compagnon","de","voyage","malheureux","Puisque","je","suis","poète","un","arc","de","mots","que","je","ressens","de","la","joie","et","de","l''effroi","à","bander","Puisque","je","suis","prisonnier","un","aperçu","soudain","de","la","liberté","Puisque","je","suis","menacé","par","la","mort","un","animal","vivant","et","bien","chaud","un","cœur","qui","bat","de","façon","sarcastique","Puisque","je","suis","menacé","par","la","mer","un","récif","de","granit","bien","dur","Mais","il","y","a","aussi","des","consolations","qui","viennent","à","moi","sans","y","être","conviées","et","qui","remplissent","de","chuchottements","odieux","je","suis","ton","plaisir","aime-les","tous","Je","suis","ton","talent","fais-en","aussi","mauvais","usage","que","de","toi-même","Je","suis","ton","désir","de","jouissance","seuls","vivent","les","gourmets","Je","suis","ta","solitude","méprise","les","hommes","Je","suis","ton","aspiration","à","la","mort","alors","tranche","Le","fil","du","rasoir","est","bien","étroit","Je","vois","ma","vie","menacée","par","deux","périls","d''un","côté","par","les","bouches","avides","de","la","gourmandise","de","l''autre","par","l''amertume","de","l''avarice","qui","se","nourrit","d''elle-même","Mais","je","tiens","à","refuser","de","choisir","entre","l''orgie","et","l''ascèse","même","si","je","dois","pour","cela","subir","le","supplice","du","grill","de","mes","désirs","Pour","moi","il","ne","suffit","pas","de","savoir","que","puisque","nous","ne","sommes","pas","libres","de","nos","actes","tout","est","excusable","Ce","que","je","cherche","ce","n''est","pas","une","excuse","à","ma","vie","mais","exactement","le","contraire","d''une","excuse","le","pardon","L''idée","me","vient","finalement","que","toute","consolation","ne","prenant","pas","en","compte","ma","liberté","est","trompeuse","qu''elle","n''est","que","l''image","réfléchie","de","mon","désespoir","En","effet","lorsque","mon","désespoir","me","dit","perds","confiance","car","chaque","jour","n''est","qu''une","trève","entre","deux","nuits","la","fausse","consolation","me","crie","Espère","car","chaque","nuit","n''est","qu''une","trève","entre","deux","jours","Mais","l''humanité","n''a","que","faire","d''une","consolation","en","forme","de","mot","d''esprit","elle","a","besoin","d''une","consolation","qui","illumine","Et","celui","qui","souhaite","devenir","mauvais","c''est-à-dire","devenir","un","homme","qui","agisse","comme","si","toutes","les","actions","étaient","défavorables","doit","au","moins","avoir","la","bonté","de","le","remarquer","lorsqu''il","y","parvient","Personne","ne","peut","énumérer","tous","les","cas","où","la","consolation","est","une","nécessité","Personne","ne","sait","quand","tombera","le","crépuscule","et","la","vie","n''est","pas","un","problème","qui","puisse","être","résolu","en","divisant","la","lumière","par","l''obscurité","et","les","jours","par","les","nuits","c''est","un","voyage","imprévisible","entre","des","lieux","qui","n''existent","pas","Je","peux","par","exemple","marcher","sur","le","rivage","et","ressentir","tout","à","coup","le","défi","effroyable","que","l''éternité","lance","à","mon","existence","dans","le","mouvement","perpétuel","de","la","mer","et","dans","la","fuite","perpétuelle","du","vent","Que","devient","alors","le","temps","si","ce","n''est","une","consolation","pour","le","fait","que","rien","de","ce","qui","est","humain","ne","dure","et","quelle","misérable","consolation","qui","n''enrichit","que","les","Suisses","Je","peux","rester","assis","devant","un","feu","dans","la","pièce","la","moins","exposée","de","toutes","au","danger","et","sentir","soudain","la","mort","me","cerner","Elle","se","trouve","dans","le","feu","dans","tous","les","objets","pointus","qui","m''entourent","dans","le","poids","du","toit","et","dans","la","masse","des","murs","Elle","se","trouve","dans","l''eau","dans","la","neige","dans","la","chaleur","et","dans","mon","sang","Que","devient","alors","le","sentiment","humain","de","sécurité","si","ce","n''est","une","consolation","pour","le","fait","que","la","mort","est","ce","qu''il","y","a","de","plus","proche","de","la","vie","et","quelle","misérable","consolation","qui","ne","fait","que","nous","rappeler","ce","qu''elle","veut","nous","faire","oublier","Je","peux","remplir","mes","pages","blanches","avec","les","plus","belles","combinaisons","de","mots","que","puisse","simaginer","mon","cerveau","Etant","donné","que","je","cherche","à","m''assurer","que","ma","vie","n''est","pas","absurde","et","que","je","ne","suis","pas","seule","sur","la","terre","je","rassemble","tous","ces","mots","en","un","livre","et","je","l''offre","au","monde","En","retour","celui-ci","me","donne","la","richesse","la","gloire","et","le","silence","Mais","que","puis-je","bien","faire","de","cet","argent","et","quel","plaisir","puis-je","prendre","à","contribuer","au","progrès","de","la","littérature","je","ne","désire","que","ce","que","je","n''aurai","pas","confirmation","de","ce","que","mes","mots","ont","touché","le","cœur","du","monde","Que","devient","alors","mon","talent","si","ce","nest","pas","une","consolation","pour","le","fait","que","je","suis","seule","mais","quelle","épouvantable","consolation","qui","me","fait","simplement","ressentir","ma","solitude","cinq","fois","plus","fort","Je","peux","voir","la","liberté","incarnée","dans","un","animal","qui","traverse","rapidement","une","clairière","et","entendre","une","voix","qui","chuchote","Vis","simplement","prends","ce","que","tu","désires","et","nai","pas","peur","pour","les","lois","Mais","qu''est-ce","que","ce","bon","conseil","si","ce","n''est","une","consolation","pour","le","fait","que","la","liberté","n''existe","pas","et","quelle","impitoyable","consolation","pour","celui","qui","s''avise","que","l","être humain","doit","mettre","des","millions","d''années","pour","devenir","un","lézard"],"tradition":{"$ref":"load-test.data"}},"id":"B6B5220E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Witness',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4E0B740-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"perds","reading_b":"Perds","scope":"global","type":"orthographic"},"id":"B4E0B740-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61B3DF6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"414,1","rank":"414","reading_lexemes":[],"text":"le"},"id":"B61B3DF6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B614B2E2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"171,1","rank":"171","reading_lexemes":[],"text":"que"},"id":"B614B2E2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B643918E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"698,2","rank":"698","reading_lexemes":[],"text":"pièce"},"id":"B643918E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B694590C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Witness","data":{"language":"Default","sigil":"S","sourcetype":"collation","text":["Notre besoin de consolation est impossible à","rassasier","de","Stig Dagerman","Je","suis","dépourvu","de","foi","et","ne","puis","donc","être","heureux","car","un","homme","qui","risque","de","craindre","que","sa","vie","ne","soit","errance","absurde","vers","une","mort","certaine","ne","peut","être","heureux","Jai","reçu","en","héritage","ni","dieu","ni","point","fixe","sur","la","terre","d''où","je","puisse","attirer","l''attention","d''un","dieu","On","ne","m''a","pas","non","plus","légué","la","fureur","bien","déguisée","du","sceptique","les","ruses","des","Sioux","du","rationaliste","ou","la","candeur","ardente","de","l''athée","Je","n''ose","donc","jeter","la","pierre","ni","à","celui","qui","croit","des","choses","qui","ne","m''inspirent","que","le","doute","ni","à","celui","qui","cultive","son","doute","comme","si","celui-ci","n''était","pas","lui","aussi","entouré","de","ténèbres","Cette","pierre","m''atteindrait","moi-même","car","je","suis","bien","certain","d''une","chose","le","besoin","de","consolation","que","connaît","l''être","humain","est","impossible","à","rassasier","En","ce","qui","me","concerne","je","traque","la","consolation","comme","le","chasseur","traque","le","gibier","Partout","où","je","crois","l''apercevoir","dans","la","forêt","je","tire","Souvent","je","n''atteins","que","le","vide","mais","une","fois","de","temps","en","temps","une","proie","tombe","à","mes","pieds","Et","comme","je","sais","que","la","consolation","ne","dure","que","le","temps","d''un","souffle","de","vent","dans","la","cime","d''un","arbre","je","me","dépêche","de","m''emparer","de","ma","victime","Qu''ai-je","alors","entre","mes","bras","Puisque","je","suis","solitaire","une","femme","aimée","ou","un","compagnon","de","voyage","malheureux","Puisque","je","suis","poète","un","arc","de","mots","que","je","ressens","de","la","joie","et","de","l''effroi","à","bander","Puisque","je","suis","prisonnier","un","aperçu","soudain","de","la","liberté","Puisque","je","suis","menacé","par","la","mort","un","animal","vivant","et","bien","chaud","un","cœur","qui","bat","de","façon","sarcastique","Puisque","je","suis","menacé","par","la","mer","un","récif","de","granit","bien","dur","Mais","il","y","a","aussi","des","consolations","qui","viennent","à","moi","sans","y","être","conviées","et","qui","remplissent","ma","chambre","de","chuchotements","odieux","je","suis","ton","plaisir","aime-les","tous","Je","suis","ton","talent","fais-en","aussi","mauvais","usage","que","de","toi-même","Je","suis","ton","désir","de","jouissance","seuls","vivent","les","gourmets","Je","suis","ta","solitude","méprise","les","hommes","Je","suis","ton","aspiration","à","la","mort","alors","tranche","Le","fil","du","rasoir","est","bien","étroit","Je","vois","ma","vie","menacée","par","deux","périls","d''un","côté","par","les","bouches","avides","de","la","gourmandise","de","l''autre","par","l''amertume","de","l''avarice","qui","se","nourrit","d''elle-même","Mais","je","tiens","à","refuser","de","choisir","entre","l''orgie","et","l''ascèse","même","si","je","dois","pour","cela","subir","le","supplice","du","grill","de","mes","désirs","Pour","moi","il","ne","suffit","pas","de","savoir","que","puisque","nous","ne","sommes","pas","libres","de","nos","actes","tout","est","excusable","Ce","que","je","cherche","ce","n''est","pas","une","excuse","à","ma","vie","mais","exactement","le","contraire","d''une","excuse","le","pardon","L''idée","me","vient","finalement","que","toute","consolation","ne","prenant","pas","en","compte","ma","liberté","est","trompeuse","qu''elle","n''est","que","l''image","réfléchie","de","mon","désespoir","En","effet","lorsque","mon","désespoir","me","dit","Perds","confiance","car","chaque","jour","n''est","qu''une","trève","entre","deux","nuits","la","fausse","consolation","me","crie","Espère","car","chaque","nuit","n''est","qu''une","trève","entre","deux","jours","Mais","l''humanité","n''a","que","faire","d''une","consolation","en","forme","de","mot","d''esprit","elle","a","besoin","d''une","consolation","qui","illumine","Et","celui","qui","souhaite","devenir","mauvais","c''est-à-dire","devenir","un","homme","qui","agisse","comme","si","toutes","les","actions","étaient","défendables","doit","au","moins","avoir","la","bonté","de","le","remarquer","lorsqu''il","y","parvient","Personne","ne","peut","énumérer","tous","les","cas","où","la","consolation","est","une","nécessité","Personne","ne","sait","quand","tombera","le","crépuscule","et","la","vie","n''est","pas","un","problème","qui","puisse","être","résolu","en","divisant","la","lumière","par","l''obscurité","et","les","jours","par","les","nuits","c''est","un","voyage","imprévisible","entre","des","lieux","qui","n''existent","pas","Je","peux","par","exemple","marcher","sur","le","rivage","et","ressentir","tout","à","coup","le","défi","effroyable","que","l''éternité","lance","à","mon","existence","dans","le","mouvement","perpétuel","de","la","mer","et","dans","la","fuite","perpétuelle","du","vent","Que","devient","alors","le","temps","si","ce","n''est","une","consolation","pour","le","fait","que","rien","de","ce","qui","est","humain","ne","dure","et","quelle","misérable","consolation","qui","n''enrichit","que","les","Suisses","Je","peux","rester","assis","devant","un","feu","dans","la","pièce","la","moins","exposée","de","toutes","au","danger","et","sentir","soudain","la","mort","me","cerner","Elle","se","trouve","dans","le","feu","dans","tous","les","objets","pointus","qui","m''entourent","dans","le","poids","du","toit","et","dans","la","masse","des","murs","Elle","se","trouve","dans","l''eau","dans","la","neige","dans","la","chaleur","et","dans","mon","sang","Que","devient","alors","le","sentiment","humain","de","sécurité","si","ce","n''est","une","consolation","pour","le","fait","que","la","mort","est","ce","qu''il","y","a","de","plus","proche","de","la","vie","et","quelle","misérable","consolation","qui","ne","fait","que","nous","rappeler","ce","qu''elle","veut","nous","faire","oublier","Je","peux","remplir","toutes","mes","pages","blanches","avec","les","plus","belles","combinaisons","de","mots","que","puisse","simaginer","mon","cerveau","Etant","donné","que","je","cherche","à","m''assurer","que","ma","vie","n''est","pas","absurde","et","que","je","ne","suis","pas","seule","sur","la","terre","je","rassemble","tous","ces","mots","en","un","livre","et","je","l''offre","au","monde","En","retour","celui-ci","me","donne","la","richesse","la","gloire","et","le","silence","Mais","que","puis-je","bien","faire","de","cet","argent","et","quel","plaisir","puis-je","prendre","à","contribuer","au","progrès","de","la","littérature","je","ne","désire","que","ce","que","je","n''aurai","pas","confirmation","de","ce","que","mes","mots","ont","touché","le","cœur","du","monde","Que","devient","alors","mon","talent","si","ce","n''est","une","consolation","pour","le","fait","que","je","suis","seule","mais","quelle","épouvantable","consolation","qui","me","fait","simplement","ressentir","ma","solitude","cinq","fois","plus","fort","Je","peux","voir","la","liberté","incarnée","dans","un","animal","qui","traverse","rapidement","une","clairière","et","entendre","une","voix","qui","chuchote","Vis","simplement","prends","ce","que","tu","désires","et","n''aie","pas","peur","pour","les","lois","Mais","qu''est-ce","que","ce","bon","conseil","si","ce","n''est","une","consolation","pour","le","fait","que","la","liberté","n''existe","pas","et","quelle","impitoyable","consolation","pour","celui","qui","s''avise","que","l","être humain","doit","mettre","des","millions","d''années","pour","devenir","un","lézard"],"tradition":{"$ref":"load-test.data"}},"id":"B694590C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Witness',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61D8BCE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"189,1","rank":"189","reading_lexemes":[],"text":"je"},"id":"B61D8BCE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4EA6EF2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"36,1","rank":"36","reading_lexemes":[],"text":"peut"},"id":"B4EA6EF2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61F7240-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"269,1","rank":"269","reading_lexemes":[],"text":"mort"},"id":"B61F7240-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65A4438-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"678,1","rank":"678","reading_lexemes":[],"text":"ne"},"id":"B65A4438-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66D26AC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1003,3","rank":"1003","reading_lexemes":[],"text":"l"},"id":"B66D26AC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51D658C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"666,2","rank":"666","reading_lexemes":[],"text":"une"},"id":"B51D658C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59A5696-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"920,2","rank":"920","reading_lexemes":[],"text":"le"},"id":"B59A5696-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56D467E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"969,2","rank":"969","reading_lexemes":[],"text":"nai"},"id":"B56D467E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DC6068-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"310,2","rank":"310","reading_lexemes":[],"text":"conviées"},"id":"B5DC6068-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F92342-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"263,1","rank":"263","reading_lexemes":[],"text":"Puisque"},"id":"B5F92342-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B667CC34-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"449,1","rank":"449","reading_lexemes":[],"text":"une"},"id":"B667CC34-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B574CB6A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"834,1","rank":"834","reading_lexemes":[],"text":"ne"},"id":"B574CB6A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4E0253C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"m.sg./f.pl.","reading_a":"toutes","reading_b":"tous","scope":"global","type":"grammatical"},"id":"B4E0253C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6826800-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"686,2","rank":"686","reading_lexemes":[],"text":"que"},"id":"B6826800-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B587B8CE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"981,1","rank":"981","reading_lexemes":[],"text":"si"},"id":"B587B8CE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DE3858-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"Lois","reading_b":"lois","scope":"global","type":"orthographic"},"id":"B4DE3858-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58B3D96-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"184,1","rank":"184","reading_lexemes":[],"text":"à"},"id":"B58B3D96-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D61588-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"opposites","reading_a":"Jai","reading_b":"Je n''ai","scope":"global","type":"lexical"},"id":"B4D61588-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B594FD9A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"330,1","rank":"330","reading_lexemes":[],"text":"aussi"},"id":"B594FD9A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6852AE0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"480,1","rank":"480","reading_lexemes":[],"text":"que"},"id":"B6852AE0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6896BC8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"91,1","rank":"91","reading_lexemes":[],"text":"celui"},"id":"B6896BC8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B653B384-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"811,2","rank":"811","reading_lexemes":[],"text":"de"},"id":"B653B384-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62AA4D0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"890,2","rank":"890","reading_lexemes":[],"text":"ce"},"id":"B62AA4D0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C707B8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"364,1","rank":"364","reading_lexemes":[],"text":"du"},"id":"B5C707B8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62F3A68-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"311,1","rank":"311","reading_lexemes":[],"text":"et"},"id":"B62F3A68-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58D1FB2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"358,1","rank":"358","reading_lexemes":[],"text":"la"},"id":"B58D1FB2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6120934-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"465,1","rank":"465","reading_lexemes":[],"text":"finalement"},"id":"B6120934-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56907B2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"954,3","rank":"954","reading_lexemes":[],"text":"clrière"},"id":"B56907B2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A95AC4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"109,1","rank":"109","reading_lexemes":[],"text":"doute"},"id":"B5A95AC4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DD3642-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"verb mood (also spelling)","reading_a":"nai","reading_b":"n''aie","scope":"global","type":"grammatical"},"id":"B4DD3642-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BE6AAE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"493,1","rank":"493","reading_lexemes":[],"text":"Perd"},"id":"B5BE6AAE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5ED8B5E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"628,2","rank":"628","reading_lexemes":[],"text":"le"},"id":"B5ED8B5E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BDAA4C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"23,1","rank":"23","reading_lexemes":[],"text":"que"},"id":"B5BDAA4C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54E91E8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"671,2","rank":"671","reading_lexemes":[],"text":"que"},"id":"B54E91E8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F56D34-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"460,1","rank":"460","reading_lexemes":[],"text":"le"},"id":"B4F56D34-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5654938-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"821,2","rank":"821","reading_lexemes":[],"text":"je"},"id":"B5654938-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D3E100-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"Méprise","reading_b":"méprise","scope":"global","type":"orthographic"},"id":"B4D3E100-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A76750-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"957,2","rank":"957","reading_lexemes":[],"text":"une"},"id":"B5A76750-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6579A9E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"634,3","rank":"634","reading_lexemes":[],"text":"coup"},"id":"B6579A9E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DAD770-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"483,1","rank":"483","reading_lexemes":[],"text":"de"},"id":"B5DAD770-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DA0D14-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"cîme","reading_b":"cime","scope":"global","type":"spelling"},"id":"B4DA0D14-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B548F274-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"344,1","rank":"344","reading_lexemes":[],"text":"les"},"id":"B548F274-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FF9E8E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"716,1","rank":"716","reading_lexemes":[],"text":"dans"},"id":"B5FF9E8E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A39AD0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"557,1","rank":"557","reading_lexemes":[],"text":"doit"},"id":"B5A39AD0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6426C0A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"956,2","rank":"956","reading_lexemes":[],"text":"entendre"},"id":"B6426C0A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60060B2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"41,1","rank":"41","reading_lexemes":[],"text":"en"},"id":"B60060B2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64BA072-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"883,2","rank":"883","reading_lexemes":[],"text":"de"},"id":"B64BA072-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67FC2C6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"968,1","rank":"968","reading_lexemes":[],"text":"et"},"id":"B67FC2C6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52E3D8A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"104,1","rank":"104","reading_lexemes":[],"text":"à"},"id":"B52E3D8A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5955EC0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"500,1","rank":"500","reading_lexemes":[],"text":"trêve"},"id":"B5955EC0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58EFF6C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"56,1","rank":"56","reading_lexemes":[],"text":"d''un"},"id":"B58EFF6C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B547131E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"866,2","rank":"866","reading_lexemes":[],"text":"Mais"},"id":"B547131E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B646A1BC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"223,1","rank":"223","reading_lexemes":[],"text":"suis"},"id":"B646A1BC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DA1236-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"802,1","rank":"802","reading_lexemes":[],"text":"toutes"},"id":"B5DA1236-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E9B5D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"944,2","rank":"944","reading_lexemes":[],"text":"la"},"id":"B5E9B5D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D493CE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"734,2","rank":"734","reading_lexemes":[],"text":"masse"},"id":"B5D493CE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B687868C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"516,1","rank":"516","reading_lexemes":[],"text":"entre"},"id":"B687868C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63932F2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"167,1","rank":"167","reading_lexemes":[],"text":"tire"},"id":"B63932F2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50D5CD2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"252,1","rank":"252","reading_lexemes":[],"text":"bander"},"id":"B50D5CD2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B20B2E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"93,3","rank":"93","reading_lexemes":[],"text":"crois"},"id":"B5B20B2E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B699D030-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Witness","data":{"language":"Default","sigil":"F","sourcetype":"collation","text":["Notre besoin de consolation est impossible à","rassasier","Stig Dagerman","Je","suis","dépourvu","de","foi","et","ne","puis","donc","être","heureux","car","un","homme","qui","risque","de","craindre","que","sa","vie","ne","soit","errance","absurde","vers","une","mort","certaine","ne","peut","être","heureux","Je n''ai","reçu","en","héritage","ni","dieu","ni","point","fixe","sur","la","terre","d''où","je","puisse","attirer","l''attention","d''un","dieu","On","ne","m''a","pas","non","plus","légué","la","fureur","bien","déguisée","du","sceptique","les","ruses","des","Sioux","du","rationnaliste","ou","la","candeur","ardente","de","l''athée","Je","n''ose","donc","jeter","la","pierre","ni","à","celle","qui","croit","des","choses","qui","ne","m''inspirent","que","le","doute","ni","à","celui","qui","cultive","son","doute","comme","si","celui-ci","n''était","pas","lui","aussi","entouré","de","ténèbres","Cette","pierre","m''atteindrait","moi-même","car","je","suis","bien","certain","d''une","chose","le","besoin","de","consolation","que","connaît","l''être","humain","est","impossible","à","rassassier","En","ce","qui","me","concerne","je","traque","la","consolation","comme","le","chasseur","traque","le","gibier","Partout","où","je","crois","l''apercevoir","dans","la","forêt","je","tire","Souvent","je","n''atteins","que","le","vide","mais","une","fois","de","temps","en","temps","une","proie","tombe","à","mes","pieds","Et","comme","je","sais","que","la","consolation","ne","dure","que","le","temps","d''un","souffle","de","vent","dans","la","cîme","d''un","arbre","je","me","dépêche","de","m''emparer","de","ma","victime","Qu''ai-je","alors","entre","les","bras","Puisque","je","suis","solitaire","une","femme","aimée","ou","un","compagnon","de","voyage","malheureux","Puisque","je","suis","poète","un","arc","de","mots","que","je","ressens","de","la","joie","et","de","l''effroi","à","bander","Puisque","je","suis","prisonnier","un","aperçu","soudain","de","la","liberté","Puisque","je","suis","menacé","par","la","mort","un","animal","vivant","et","bien","chaud","un","cœur","qui","bat","de","façon","sarcastique","Puisque","je","suis","menacé","par","la","mer","un","récif","de","granit","bien","dur","Mais","il","y","a","aussi","des","consolations","qui","viennent","à","moi","sans","y","être","conviées","et","qui","remplissent","ma","chambre","de","chuchotements","odieux","Je","suis","ton","plaisir","aime-les","tous","Je","suis","ton","talent","fais-en","aussi","mauvais","usage","que","de","Toi-même","Je","suis","ton","désir","de","jouissance","seuls","vivent","les","gourmets","Je","suis","ta","solitude","Méprise","les","hommes","Je","suis","ton","aspiration","à","la","mort","alors","Tranche","Le","fil","du","rasoir","est","étroit","Je","vois","ma","vie","menacée","par","deux","périls","d''un","côté","par","les","bouches","avides","de","la","gourmandise","de","l''autre","par","l''amertume","de","l''avarice","qui","se","nourrit","d''elle-même","Mais","je","tiens","à","refuser","de","choisir","entre","l''orgie","et","l''ascèse","même","si","je","dois","pour","cela","subir","le","supplice","du","grill","de","mes","désirs","Pour","moi","il","ne","suffit","pas","de","savoir","que","puisque","nous","ne","sommes","pas","libres","de","nos","actes","tout","est","excusable","Ce","que","je","cherche","ce","n''est","pas","une","excuse","à","ma","vie","mais","exactement","le","contraire","d''une","excuse à ma vie mais exactement le contraire dune excuse","le","pardon","L''idée","me","vient","finalement","que","toute","consolation","ne","prenant","pas","en","compte","ma","liberté","est","trompeuse","qu''elle","n''est","que","l''image","réfléchie","de","mon","désespoir","En","effet","lorsque","mon","désespoir","me","dit","Perds","confiance","car","chaque","joie","n''est","qu''une","trève","entre","deux","nuits","la","fausse","consolation","me","crie","Espère","car","chaque","nuit","n''est","qu''une","trève","entre","deux","jours","Mais","l''humanité","n''a","que","faire","d''une","consolation","en","forme","de","mot","d''esprit","elle","a","besoin","d''une","consolation","qui","illumine","Et","celui","qui","souhaite","devenir","mauvais","c''est-à-dire","devenir","un","homme","qui","agisse","comme","si","toutes","les","actions","étaient","défendables","doit","du","moins","avoir","la","bonté","de","le","remarquer","lorsqu''il","y","parvient","Personne","ne","peut","énumérer","tous","les","cas","où","la","consolation","est","une","nécessité","Personne","ne","sait","quand","tombera","le","crépuscule","et","la","vie","n''est","pas","un","problème","qui","puisse","être","résolu","en","divisant","la","lumière","par","l''obscurité","et","les","jours","par","les","nuits","c''est","un","voyage","imprévisible","entre","des","lieux","qui","n''existent","pas","Je","peux","par","exemple","marcher","sur","le","rivage","et","ressentir","tout","à","coup","le","défi","effroyable","que","l''éternité","lance","à","mon","existence","dans","le","mouvement","perpétuel","de","la","mer","et","dans","la","fuite","perpétuelle","du","vent","Que","devient","alors","le","temps","si","ce","n''est","une","consolation","pour","le","fait","que","rien","de","ce","qui","est","humain","ne","dure","et","quelle","misérable","consolation","qui","n''enrichit","que","les","Suisses","Je","peux","rester","assis","devant","un","feu","dans","la","pièce","la","moins","exposée","de","toutes","au","danger","et","sentir","soudain","la","mort","me","cerner","Elle","se","trouve","dans","le","feu","dans","tous","les","objets","pointus","qui","m''entourent","dans","le","poids","du","toit","et","dans","la","masse","des","murs","Elle","se","trouve","dans","l''eau","dans","la","chaleur","et","dans","mon","sang","Que","devient","alors","le","sentiment","de","sécurité","si","ce","n''est","une","consolation","pour","le","fait","que","la","mort","est","ce","qu''il","y","a","de","plus","proche","de","la","vie","et","quelle","misérable","consolation","qui","ne","fait","que","nous","rappeler","ce","qu''elle","veut","nous","faire","oublier","Je","peux","remplir","toutes","mes","pages","blanches","avec","les","plus","belles","combinaisons","de","mots","que","puisse","simaginer","mon","cerveau","Etant","donné","que","je","cherche","à","m''assurer","que","ma","vie","n''est","pas","absurde","et","que","je","ne","suis","pas","seule","sur","la","terre","je","rassemble","tous","ces","mots","en","un","livre","et","je","l''offre","au","monde","En","retour","celui-ci","me","donne","la","richesse","la","gloire","et","le","silence","Mais","que","puis-je","bien","faire","de","cet","argent","et","quel","plaisir","puis-je","prendre","à","contribuer","au","progrès","de","la","littérature","je","ne","désire","que","ce","que","je","n''aurai","pas","confirmation","de","ce","que","mes","mots","ont","touché","le","cœur","du","monde","Que","devient","alors","mon","talent","si","ce","n''est","une","consolation","pour","le","fait","que","je","suis","seule","mais","quelle","épouvantable","consolation","qui","me","fait","simplement","ressentir","ma","solitude","cinq","fois","plus","fort","Je","peux","voir","la","liberté","incarnée","dans","un","animal","qui","traverse","rapidement","une","clairière","et","entendre","une","voix","qui","chuchote","Vis","simplement","prends","ce","que","tu","désires","et","n''aie","pas","peur","des","lois","Mais","qu''est-ce","que","ce","bon","conseil","si","ce","n''est","une","consolation","pour","le","fait","que","la","liberté","n''existe","pas","et","quelle","impitoyable","consolation","pour","celui","qui","s''avise","que","l","être humain","doit","mettre","des","millions","d''années","pour","devenir","un","lézard"],"tradition":{"$ref":"load-test.data"}},"id":"B699D030-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Witness',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B571693E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"787,2","rank":"787","reading_lexemes":[],"text":"qui"},"id":"B571693E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5533004-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"533,1","rank":"533","reading_lexemes":[],"text":"besoin"},"id":"B5533004-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4E8DDE4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"824,2","rank":"824","reading_lexemes":[],"text":"m''assurer"},"id":"B4E8DDE4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6318638-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"246,1","rank":"246","reading_lexemes":[],"text":"la"},"id":"B6318638-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60FBCD8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"875,1","rank":"875","reading_lexemes":[],"text":"quel"},"id":"B60FBCD8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B573A96A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"636,3","rank":"636","reading_lexemes":[],"text":"défi"},"id":"B573A96A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B68A8DDC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"777,3","rank":"777","reading_lexemes":[],"text":"le"},"id":"B68A8DDC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57C6FBE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"33,1","rank":"33","reading_lexemes":[],"text":"mort"},"id":"B57C6FBE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B449D4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"105,1","rank":"105","reading_lexemes":[],"text":"celui"},"id":"B5B449D4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CC2252-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"915,3","rank":"915","reading_lexemes":[],"text":"n''est"},"id":"B5CC2252-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CF2D1C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"599,2","rank":"599","reading_lexemes":[],"text":"résolu"},"id":"B5CF2D1C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67F0124-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"990,2","rank":"990","reading_lexemes":[],"text":"la"},"id":"B67F0124-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6349418-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"301,1","rank":"301","reading_lexemes":[],"text":"des"},"id":"B6349418-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52CB834-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"679,2","rank":"679","reading_lexemes":[],"text":"dure"},"id":"B52CB834-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B68EE4D6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Witness","data":{"language":"Default","sigil":"T1","sourcetype":"collation","text":["Notre besoin de consolation est impossible à","rassasier","de","Stig Dagerman","Je","suis","dépourvu","de","foi","et","ne","puis","donc","être","heureux","car","un","homme","qui","risque","de","craindre","que","sa","vie","ne","soit","un","errance","absurde","vers","une","mort","certaine","ne","peut","être","heureux","Je n''ai","reçu","en","héritage","ni","dieu","ni","point","fixe","sur","la","terre","d''où","je","puisse","attirer","l''attention","d''un","dieu","On","ne","m''a","pas","non","plus","légué","la","fureur","bien","déguisée","du","sceptique","les","ruses","de","Sioux","du","rationaliste","ou","la","candeur","ardente","de","l''athée","Je","n''ose","donc","jeter","la","pierre","ni","à","celle","qui","crois","en","des","choses","qui","ne","minspire","que","le","doute","ni","à","celui","qui","cultive","son","doute","comme","si","celui-ci","n''était","pas","lui","aussi","entouré","de","ténèbres","Cette","pierre","m''atteindrait","moi-même","car","je","suis","bien","certain","d''une","chose","le","besoin","de","consolation","que","connaît","l''être","humain","est","impossible","à","rassasier","En","ce","qui","me","concerne","je","traque","la","consolation","comme","le","chasseur","tracque","le","gibier","Partout","où","je","crois","l''apercevoir","dans","la","forêt","je","tire","Souvent","je","natteint","que","le","vide","mais","une","fois","de","temps","en","temps","une","proie","tombe","à","mes","pieds","Et","comme","je","sais","que","la","consolation","ne","dure","que","le","temps","d''un","souffle","de","vent","dans","la","scime","d''un","arbre","je","me","dépêche","de","m''emparer","de","ma","victime","Qu''ai-je","alors","entre","mes","bras","Puisque","je","suis","solitaire","une","femme","aimée","ou","un","compagnon","de","voyage","malheureux","Puisque","je","suis","poète","un","arche","de","mots","que","je","ressent","de","la","joie","et","de","l''effroi","abandées","Puisque","je","suis","prisonnier","un","aperçu","soudain","de","la","liberté","Puisque","je","suis","menacé","par","la","mort","un","animal","vivant","et","bien","chaud","un","cœur","qui","bat","de","façon","sarcastique","Puisque","je","suis","menacé","par","la","mer","un","récif","de","granite","bien","dure","Mais","il","y","a","aussi","des","consolations","qui","viennent","à","moi","sans","y","êtres","conviées","et","qui","remplissent","ma","chambre","de","chuchotements","au deu dieu","Je","suis","ton","plaisir","aime-les","tous","Je","suis","ton","talent","fais-en","aussi","mauvais","usage","que","de","toi-même","Je","suis","ton","désir","de","jouissance","seuls","vivent","les","gourmets","Je","suis","ta","solitude","méprise","les","hommes","Je","suis","ton","aspiration","à","la","mort","alors","tranche","Le","fil","du","rasoir","est","bien","étroit","Je","vois","ma","vie","menacée","par","deux","périls","d''un","côté","par","les","bouches","avides","de","la","gourmandise","de","l''autre","par","l''amertume","de","l''avarice","qui","se","nourrit","d''elle-même","Mais","je","tiens","à","refuser","de","choisir","entre","l''orgie","et","la cèse","même","si","je","dois","pour","cela","subire","le","supplice","du","grill","de","mes","désirs","Pour","moi","il","ne","suffit","pas","de","savoir","que","puisque","nous","ne","sommes","pas","libres","de","nos","actes","tout","est","excusable","Ce","que","je","cherche","ce","n''est","pas","une","excuse","à","ma","vie","mais","exactement","le","contraire","d''une","excuse","le","pardon","L''idée","me","vient","finalement","que","toute","consolation","ne","prenant","pas","en","compte","ma","liberté","est","trompeuse","qu''elle","n''est","que","l''image","réfléchie","de","mon","désespoir","En","effet","lorsque","mon","désespoir","me","dit","Perd","confiance","car","chaque","jour","n''est","qu''une","trêve","entre","deux","nuits","la","fausse","consolation","me","crie","Espère","car","chaque","nuit","n''est","qu''une","trêve","entre","deux","jours","Mais","l''humanité","n''a","que","faire","d''une","consolation","en","forme","de","mot","d''esprit","elle","a","besoin","d''une","consolation","qui","illumine","Et","celui","qui","souhaite","devenir","mauvais","c''est-à-dire","devenir","un","homme","qui","agisse","comme","si","toutes","les","actions","étaient","défendables","doit","au","moins","avoir","la","bonté","de","le","remarquer","lorsqu''il","y","parvient","Personne","ne","peut","énumérer","tous","les","cas","où","la","consolation","est","une","nécessité","Personne","ne","sait","quand","tombera","le","crépuscule","et","la","vie","n''est","pas","un","problème","qui","puisse","être","résolu","en","divisant","la","lumière","par","l''obscurité","et","les","jours","par","les","nuits","c''est","un","voyage","imprévisible","entre","des","lieux","qui","n''existent","pas","Je","peux","par","exemple","marcher","sur","le","rivage","et","ressentir","tout","à","coup","le","défit","effroyable","que","l''éternité","lance","à","mon","existence","dans","le","mouvement","perpétuel","de","la","mer","et","dans","la","fuite","perpétuelle","du","vent","Que","devient","alors","le","temps","si","ce","n''est","une","consolation","pour","le","fait","que","rien","de","ce","qui","est","humain","ne","dure","et","quelle","misérable","consolation","qui","nenrichi","que","les","Suisses","Je","peux","rester","assis","devant","un","feu","dans","la","pièce","la","moins","exposée","de","toutes","au","danger","et","sentir","soudain","la","mort","me","cerner","Elle","se","trouve","dans","le","feu","dans","tous","les","objets","pointus","qui","m''entourent","dans","le","poids","du","toit","et","dans","la","masse","des","murs","elle","se","trouve","dans","l''eau","dans","la","neige","dans","la","chaleur","et","dans","mon","sang","Que","devient","alors","le","sentiment","humain","de","sécurité","si","ce","n''est","une","consolation","pour","le","fait","que","la","mort","est","ce","qu''il","y","a","le","plus","proche","de","la","vie","et","quelle","misérable","consolation","qui","ne","fait","que","nous","rappeler","ce","qu''elle","veut","nous","faire","oublier","Je","peux","remplir","toutes","mes","pages","blanches","avec","les","plus","belles","combinaisons","de","mots","que","puisse","simaginer","mon","cerveau","Etant","donné","que","je","cherche","à","m''assurer","que","ma","vie","n''est","pas","absurde","et","que","je","ne","suis","pas","seule","sur","la","terre","je","rassemble","tous","ces","mots","en","un","livre","et","je","l''offre","au","monde","En","retour","celui-ci","me","donne","la","richesse","la","gloire","et","le","silence","Mais","que","puis-je","bien","faire","de","cet","argent","et","quel","plaisir","puis-je","prendre","à","contribuer","au","progrès","de","la","littérature","je","ne","désire","que","ce","que","je","n''aurai","pas","confirmation","de","ce","que","mes","mots","ont","touché","le","cœur","du","monde","Que","devient","alors","mon","talent","si","ce","n''est","une","consolation","pour","le","fait","que","je","suis","seule","mais","quelle","épouvantable","consolation","qui","me","fait","simplement","ressentir","ma","solitude","cinq","fois","plus","fort","Je","peux","voir","la","liberté","incarnée","dans","un","animal","qui","traverse","rapidement","une","clrière","et","entendre","une","voix","qui","chuchote","Vis","simplement","prends","ce","que","tu","désires","et","naies","pas","peur","des","lois","Mais","qu''est-ce","que","ce","bon","conseil","si","ce","n''est","une","consolation","pour","le","fait","que","la","liberté","n''existe","pas","et","quelle","impitoyable","consolation","pour","celui","qui","s''avise","que","l","être humain","doit","mettre","des","millions","d''années","pour","devenir","un","lézard"],"tradition":{"$ref":"load-test.data"}},"id":"B68EE4D6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Witness',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B578A6C2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"952,2","rank":"952","reading_lexemes":[],"text":"rapidement"},"id":"B578A6C2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B531A31C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"967,2","rank":"967","reading_lexemes":[],"text":"désires"},"id":"B531A31C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6151642-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"982,2","rank":"982","reading_lexemes":[],"text":"ce"},"id":"B6151642-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B559EFDE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"766,1","rank":"766","reading_lexemes":[],"text":"pour"},"id":"B559EFDE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50740FE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"154,1","rank":"154","reading_lexemes":[],"text":"chasseur"},"id":"B50740FE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6228ACA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"538,1","rank":"538","reading_lexemes":[],"text":"Et"},"id":"B6228ACA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4EC5262-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"912,2","rank":"912","reading_lexemes":[],"text":"talent"},"id":"B4EC5262-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D9B0AC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"724,2","rank":"724","reading_lexemes":[],"text":"qui"},"id":"B5D9B0AC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C58960-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"831,1","rank":"831","reading_lexemes":[],"text":"et"},"id":"B5C58960-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58FBD94-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"606,1","rank":"606","reading_lexemes":[],"text":"et"},"id":"B58FBD94-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E08FDA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"231,1","rank":"231","reading_lexemes":[],"text":"de"},"id":"B5E08FDA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B681A6CC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"74,1","rank":"74","reading_lexemes":[],"text":"Sioux"},"id":"B681A6CC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65EE51A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"158,1","rank":"158","reading_lexemes":[],"text":"Partout"},"id":"B65EE51A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64FD232-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"772,2","rank":"772","reading_lexemes":[],"text":"est"},"id":"B64FD232-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B609F64A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"752,2","rank":"752","reading_lexemes":[],"text":"Que"},"id":"B609F64A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C5E86A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"985,2","rank":"985","reading_lexemes":[],"text":"consolation"},"id":"B5C5E86A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B523D6D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"251,2","rank":"251","reading_lexemes":[],"text":"à"},"id":"B523D6D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CF8E56-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"625,2","rank":"625","reading_lexemes":[],"text":"exemple"},"id":"B5CF8E56-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58BFE7A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"432,1","rank":"432","reading_lexemes":[],"text":"ne"},"id":"B58BFE7A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61BA2B4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"966,2","rank":"966","reading_lexemes":[],"text":"tu"},"id":"B61BA2B4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64ADBBA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"461,1","rank":"461","reading_lexemes":[],"text":"pardon"},"id":"B64ADBBA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B642CF2E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"918,2","rank":"918","reading_lexemes":[],"text":"consolation"},"id":"B642CF2E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51DC888-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"827,2","rank":"827","reading_lexemes":[],"text":"vie"},"id":"B51DC888-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50E3378-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"103,1","rank":"103","reading_lexemes":[],"text":"ni"},"id":"B50E3378-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5387200-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"930,2","rank":"930","reading_lexemes":[],"text":"qui"},"id":"B5387200-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E6AE24-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1000,2","rank":"1000","reading_lexemes":[],"text":"qui"},"id":"B5E6AE24-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D7D472-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"défit","reading_b":"défi","scope":"global","type":"spelling"},"id":"B4D7D472-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6195702-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"417,1","rank":"417","reading_lexemes":[],"text":"grill"},"id":"B6195702-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FCF012-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"630,1","rank":"630","reading_lexemes":[],"text":"et"},"id":"B5FCF012-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5199EB6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"232,1","rank":"232","reading_lexemes":[],"text":"voyage"},"id":"B5199EB6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B527B24E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"947,1","rank":"947","reading_lexemes":[],"text":"dans"},"id":"B527B24E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E3A5DA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"590,2","rank":"590","reading_lexemes":[],"text":"la"},"id":"B5E3A5DA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B545303A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"761,2","rank":"761","reading_lexemes":[],"text":"ce"},"id":"B545303A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5ABA144-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"87,1","rank":"87","reading_lexemes":[],"text":"la"},"id":"B5ABA144-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57C0ECA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"428,1","rank":"428","reading_lexemes":[],"text":"savoir"},"id":"B57C0ECA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5119FC2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"89,1","rank":"89","reading_lexemes":[],"text":"ni"},"id":"B5119FC2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B591413C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"570,1","rank":"570","reading_lexemes":[],"text":"ne"},"id":"B591413C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4FE8450-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"494,2","rank":"494","reading_lexemes":[],"text":"confiance"},"id":"B4FE8450-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B566090E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"289,1","rank":"289","reading_lexemes":[],"text":"mer"},"id":"B566090E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50CFAEE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"427,1","rank":"427","reading_lexemes":[],"text":"de"},"id":"B50CFAEE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6BA9AEA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Witness","data":{"language":"Default","sigil":"C","sourcetype":"collation","text":["Notre besoin de consolation est impossible à","rassasier","de","Stig Dagerman","Je","suis","dépourvu","de","foi","et","ne","puis","donc","être","heureux","car","un","homme","qui","risque","de","craindre","que","sa","vie","ne","soit","errance","absurde","vers","une","mort","certaine","ne","peut","être","heureux","Jai","reçu","en","héritage","ni","dieu","ni","point","fixe","sur","la","terre","d''où","je","puisse","attirer","l''attention","d''un","dieu","On","ne","m''a","pas","non","plus","légué","la","fureur","bien","déguisée","du","sceptique","les","ruses","des","Sioux","du","rationaliste","ou","la","candeur","ardente","de","l''athée","Je","n''ose","donc","jeter","la","pierre","ni","à","celui","qui","croit","des","choses","qui","ne","m''inspirent","que","le","doute","ni","à","celui","qui","cultive","son","doute","comme","si","celui-ci","n''était","pas","lui","aussi","entouré","de","ténèbres","Cette","pierre","m''atteindrait","moi-même","car","je","suis","bien","certain","d''une","chose","le","besoin","de","consolation","que","connait","l''être","humain","est","impossible","à","rassasier","En","ce","qui","me","concerne","je","traque","la","consolation","comme","le","chasseur","traque","le","gibier","Partout","où","je","crois","l''apercevoir","dans","la","forêt","je","tire","Souvent","je","n''atteins","que","le","vide","mais","une","fois","de","temps","en","temps","une","proie","tombe","à","mes","pieds","Et","comme","je","sais","que","la","consolation","ne","dure","que","le","temps","d''un","souffle","de","vent","dans","la","nime  or scime","d''un","arbre","je","me","dépêche","de","m''emparer","de","ma","victime","Qu''ai-je","alors","entre","mes","bras","Puisque","je","suis","solitaire","une","femme","aimée","ou","un","compagnon","de","voyage","malheureux","Puisque","je","suis","poète","un","arc","de","mots","que","je","ressens","de","la","joie","et","de","l''effroi","à","bander","Puisque","je","suis","prisonnier","un","aperçu","soudain","de","la","liberté","Puisque","je","suis","menacé","par","la","mort","un","animal","vivant","et","bien","chaud","un","cœur","qui","bat","de","façon","sarcastique","Puisque","je","suis","menacé","par","la","mer","un","récif","de","granit","bien","dur","Mais","il","y","a","aussi","des","consolations","qui","viennent","à","moi","sans","y","être","conviées","et","qui","remplissent","ma","chambre","de","chuchottements","odieux","je","suis","ton","plaisir","aime-les","tous","Je","suis","ton","talent","fais-en","aussi","mauvais","usage","que","de","toi-même","Je","suis","ton","désir","de","jouissance","seuls","vivent","les","gourmets","Je","suis","ta","solitude","méprise","les","hommes","Je","suis","ton","aspiration","à","la","mort","alors","tranche","Le","fil","du","rasoir","est","bien","étroit","Je","vois","ma","vie","menacée","par","deux","périls","d''un","côté","par","les","bouches","avides","de","la","gourmandise","de","l''autre","par","l''amertume","de","l''avarice","qui","se","nourrit","d''elle-même","Mais","je","tiens","à","refuser","de","choisir","entre","l''orgie","et","l''ascèse","même","si","je","dois","pour","cela","subir","le","supplice","du","grill","de","mes","désirs","Pour","moi","il","ne","suffit","pas","de","savoir","que","puisque","nous","ne","sommes","pas","libres","de","nos","actes","tout","est","excusable","Ce","que","je","cherche","ce","n''est","pas","une","excuse","à","ma","vie","mais","exactement","le","contraire","d''une","excuse","le","pardon","L''idée","me","vient","finalement","que","toute","consolation","ne","prenant","pas","en","compte","ma","liberté","est","trompeuse","qu''elle","n''est","que","l''image","réfléchie","de","mon","désespoir","En","effet","lorsque","mon","désespoir","me","dit","Perds","confiance","car","chaque","jour","n''est","qu''une","trève","entre","deux","nuits","la","fausse","consolation","me","crie","Espère","car","chaque","nuit","n''est","qu''une","trève","entre","deux","jours","Mais","l''humanité","n''a","que","faire","d''une","consolation","en","forme","de","mot","d''esprit","elle","a","besoin","d''une","consolation","qui","illumine","Et","celui","qui","souhaite","devenir","mauvais","c''est-à-dire","devenir","un","homme","qui","agisse","comme","si","toutes","les","actions","étaient","défendables","doit","au","moins","avoir","la","bonté","de","le","remarquer","lorsqu''il","y","parvient","Personne","ne","peut","énumérer","tous","les","cas","où","la","consolation","est","une","nécessité","Personne","ne","sait","quand","tombera","le","crépuscule","et","la","vie","n''est","pas","un","problème","qui","puisse","être","résolu","en","divisant","la","lumière","par","l''obscurité","et","les","jours","par","les","nuits","c''est","un","voyage","imprévisible","entre","des","lieux","qui","n''existent","pas","Je","peux","par","exemple","marcher","sur","le","rivage","et","ressentir","tout","à","coup","le","défi","effroyable","que","l''éternité","lance","à","mon","existence","dans","le","mouvement","perpétuel","de","la","mer","et","dans","la","fuite","perpétuelle","du","vent","Que","devient","alors","le","temps","si","ce","n''est","une","consolation","pour","le","fait","que","rien","de","ce","qui","est","humain","ne","dure","et","quelle","misérable","consolation","qui","n''enrichit","que","les","Suisses","Je","peux","rester","assis","devant","un","feu","dans","la","pièce","la","moins","exposée","de","toutes","au","danger","et","sentir","soudain","la","mort","me","cerner","Elle","se","trouve","dans","le","feu","dans","tous","les","objets","pointus","qui","m''entourent","dans","le","poids","du","toit","et","dans","la","masse","des","murs","Elle","se","trouve","dans","l''eau","dans","la","neige","dans","la","chaleur","et","dans","mon","sang","Que","devient","alors","le","sentiment","humain","de","sécurité","si","ce","n''est","une","consolation","pour","le","fait","que","la","mort","est","ce","qu''il","y","a","de","plus","proche","de","la","vie","et","quelle","misérable","consolation","qui","ne","fait","que","nous","rappeler","ce","qu''elle","veut","nous","faire","oublier","Je","peux","remplir","toutes","mes","pages","blanches","avec","les","plus","belles","combinaisons","de","mots","que","puisse","simaginer","mon","cerveau","Etant","donné","que","je","cherche","à","m''assurer","que","ma","vie","n''est","pas","absurde","et","que","je","ne","suis","pas","seule","sur","la","terre","je","rassemble","tous","ces","mots","en","un","livre","et","je","l''offre","au","monde","En","retour","celui-ci","me","donne","la","richesse","la","gloire","et","le","silence","Mais","que","puis-je","bien","faire","de","cet","argent","et","quel","plaisir","puis-je","prendre","à","contribuer","au","progrès","de","la","littérature","je","ne","désire","que","ce","que","je","n''aurai","pas","confirmation","de","ce","que","mes","mots","ont","touché","le","cœur","du","monde","Que","devient","alors","mon","talent","si","ce","n''est","une","consolation","pour","le","fait","que","je","suis","seule","mais","quelle","épouvantable","consolation","qui","me","fait","simplement","ressentir","ma","solitude","cinq","fois","plus","fort","Je","peux","voir","la","liberté","incarnée","dans","un","animal","qui","traverse","rapidement","une","clairière","et","entendre","une","voix","qui","chuchote","Vis","simplement","prends","ce","que","tu","désires","et","n''aie","pas","peur","pour","les","lois","Mais","qu''est-ce","que","ce","bon","conseil","si","ce","n''est","une","consolation","pour","le","fait","que","la","liberté","n''existe","pas","et","quelle","impitoyable","consolation","pour","celui","qui","s''avise","que","l","être humain","doit","mettre","des","millions","d''années","pour","devenir","un","lézard"],"tradition":{"$ref":"load-test.data"}},"id":"B6BA9AEA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Witness',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E4C8C0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"624,2","rank":"624","reading_lexemes":[],"text":"par"},"id":"B5E4C8C0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B32928-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"697,2","rank":"697","reading_lexemes":[],"text":"la"},"id":"B5B32928-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A9BC8A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"554,1","rank":"554","reading_lexemes":[],"text":"actions"},"id":"B5A9BC8A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6724736-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"700,2","rank":"700","reading_lexemes":[],"text":"moins"},"id":"B6724736-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65920F8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"837,1","rank":"837","reading_lexemes":[],"text":"seul"},"id":"B65920F8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B569C6AC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"307,1","rank":"307","reading_lexemes":[],"text":"sans"},"id":"B569C6AC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B663E07E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"80,1","rank":"80","reading_lexemes":[],"text":"ardente"},"id":"B663E07E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66F1A66-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"435,1","rank":"435","reading_lexemes":[],"text":"libres"},"id":"B66F1A66-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F73D16-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"842,1","rank":"842","reading_lexemes":[],"text":"rassemble"},"id":"B5F73D16-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5428574-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"24,1","rank":"24","reading_lexemes":[],"text":"sa"},"id":"B5428574-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5980940-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"927,3","rank":"927","reading_lexemes":[],"text":"quelle"},"id":"B5980940-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B591FF46-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"822,2","rank":"822","reading_lexemes":[],"text":"cherche"},"id":"B591FF46-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6079D5A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"160,1","rank":"160","reading_lexemes":[],"text":"je"},"id":"B6079D5A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B544CBF4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"633,1","rank":"633","reading_lexemes":[],"text":"à"},"id":"B544CBF4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65E1FB8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"748,1","rank":"748","reading_lexemes":[],"text":"et"},"id":"B65E1FB8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F2C4E4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"296,1","rank":"296","reading_lexemes":[],"text":"Mais"},"id":"B4F2C4E4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B583F7FC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"86,1","rank":"86","reading_lexemes":[],"text":"jeter"},"id":"B583F7FC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B529AC2A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"186,1","rank":"186","reading_lexemes":[],"text":"pieds"},"id":"B529AC2A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C16C4A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"321,1","rank":"321","reading_lexemes":[],"text":"ton"},"id":"B5C16C4A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51C4210-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"375,1","rank":"375","reading_lexemes":[],"text":"deux"},"id":"B51C4210-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56A8682-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"93,1","rank":"93","reading_lexemes":[],"text":"croit"},"id":"B56A8682-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54F5A42-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"993,2","rank":"993","reading_lexemes":[],"text":"pas"},"id":"B54F5A42-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B622276A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"562,1","rank":"562","reading_lexemes":[],"text":"bonté"},"id":"B622276A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BD4A8E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"197,1","rank":"197","reading_lexemes":[],"text":"le"},"id":"B5BD4A8E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5193C64-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"345,2","rank":"345","reading_lexemes":[],"text":"gourmets"},"id":"B5193C64-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E15E88-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"621,2","rank":"621","reading_lexemes":[],"text":"pas"},"id":"B5E15E88-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D65CB4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"traqu","reading_b":"traque","scope":"global","type":"spelling"},"id":"B4D65CB4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DBD194-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"gender","reading_a":"seul","reading_b":"seule","scope":"global","type":"grammatical"},"id":"B4DBD194-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66C0218-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"613,2","rank":"613","reading_lexemes":[],"text":"un"},"id":"B66C0218-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A8256E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"750,2","rank":"750","reading_lexemes":[],"text":"mon"},"id":"B5A8256E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B672A87A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"93,2","rank":"93","reading_lexemes":[],"text":"croient"},"id":"B672A87A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4405BA6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Graph","data":"--- &1 !!perl/array:Graph\n- 0\n- 2685\n- !!perl/array:Graph::AdjacencyMap::Light\n  - 1146\n  - 152\n  - 1\n  - ''0'': ''#START#''\n    ''1'': ''#END#''\n    ''100'': 168,1\n    ''1000'': 922,2\n    ''1001'': 923,2\n    ''1002'': 924,2\n    ''1004'': 925,3\n    ''1005'': 926,2\n    ''1007'': 927,3\n    ''1008'': 928,2\n    ''1009'': 929,2\n    ''101'': 169,1\n    ''1012'': 93,3\n    ''1013'': 930,2\n    ''1014'': 931,2\n    ''1015'': 932,2\n    ''1016'': 933,2\n    ''1017'': 934,2\n    ''1018'': 935,2\n    ''1019'': 936,2\n    ''102'': 17,1\n    ''1020'': 937,2\n    ''1021'': 938,2\n    ''1022'': 939,1\n    ''1023'': 94,1\n    ''1024'': 940,2\n    ''1025'': 941,2\n    ''1026'': 942,2\n    ''1027'': 943,1\n    ''1028'': 944,2\n    ''1029'': 945,2\n    ''1030'': 946,2\n    ''1031'': 947,1\n    ''1032'': 948,2\n    ''1033'': 949,2\n    ''1034'': 95,1\n    ''1035'': 950,2\n    ''1036'': 951,2\n    ''1037'': 952,2\n    ''1038'': 953,2\n    ''104'': 170,2\n    ''1040'': 954,3\n    ''1041'': 955,1\n    ''1042'': 956,2\n    ''1043'': 957,2\n    ''1044'': 958,2\n    ''1045'': 959,2\n    ''1046'': 96,1\n    ''1047'': 960,1\n    ''1048'': 961,2\n    ''1049'': 962,2\n    ''105'': 171,1\n    ''1050'': 963,2\n    ''1051'': 964,2\n    ''1052'': 965,2\n    ''1053'': 966,2\n    ''1054'': 967,2\n    ''1055'': 968,1\n    ''1058'': 969,4\n    ''1059'': 97,1\n    ''106'': 172,1\n    ''1060'': 970,2\n    ''1061'': 971,2\n    ''1062'': 972,1\n    ''1064'': 973,3\n    ''1066'': 974,3\n    ''1067'': 975,2\n    ''1068'': 976,2\n    ''1069'': 977,2\n    ''107'': 173,1\n    ''1070'': 978,2\n    ''1071'': 979,2\n    ''1072'': 98,1\n    ''1073'': 980,1\n    ''1074'': 981,1\n    ''1075'': 982,2\n    ''1076'': 983,2\n    ''1077'': 984,2\n    ''1078'': 985,2\n    ''1079'': 986,1\n    ''108'': 174,2\n    ''1080'': 987,2\n    ''1081'': 988,2\n    ''1082'': 989,2\n    ''1084'': 99,2\n    ''1085'': 990,2\n    ''1086'': 991,2\n    ''1087'': 992,2\n    ''1088'': 993,2\n    ''1089'': 994,1\n    ''109'': 175,1\n    ''1090'': 995,2\n    ''1091'': 996,2\n    ''1092'': 997,2\n    ''1093'': 998,1\n    ''1094'': 999,2\n    ''110'': 176,1\n    ''111'': 177,1\n    ''112'': 178,1\n    ''1120'': 1004,2\n    ''1121'': 1004,3\n    ''113'': 179,1\n    ''114'': 18,1\n    ''115'': 180,1\n    ''116'': 181,1\n    ''118'': 182,2\n    ''119'': 183,1\n    ''12'': 1005,2\n    ''120'': 184,1\n    ''121'': 185,1\n    ''122'': 186,1\n    ''123'': 187,1\n    ''124'': 188,1\n    ''125'': 189,1\n    ''126'': 19,1\n    ''127'': 190,1\n    ''128'': 191,1\n    ''129'': 192,1\n    ''13'': 1006,2\n    ''130'': 193,1\n    ''131'': 194,1\n    ''132'': 195,1\n    ''133'': 196,1\n    ''134'': 197,1\n    ''135'': 198,1\n    ''136'': 199,1\n    ''137'': 2,1\n    ''139'': 20,1\n    ''14'': 1007,2\n    ''140'': 200,1\n    ''141'': 201,1\n    ''142'': 202,1\n    ''143'': 203,1\n    ''144'': 204,1\n    ''145'': 205,2\n    ''147'': 205,4\n    ''148'': 205,5\n    ''149'': 205,6\n    ''15'': 1008,2\n    ''150'': 206,1\n    ''151'': 207,1\n    ''152'': 208,1\n    ''153'': 209,1\n    ''154'': 21,1\n    ''155'': 210,1\n    ''156'': 211,1\n    ''157'': 212,1\n    ''158'': 213,1\n    ''159'': 214,1\n    ''16'': 1009,2\n    ''160'': 215,1\n    ''161'': 216,1\n    ''162'': 217,1\n    ''163'': 218,1\n    ''165'': 219,2\n    ''166'': 22,1\n    ''167'': 220,1\n    ''168'': 221,1\n    ''169'': 222,1\n    ''17'': 101,1\n    ''170'': 223,1\n    ''171'': 224,1\n    ''172'': 225,1\n    ''173'': 226,1\n    ''174'': 227,1\n    ''175'': 228,1\n    ''176'': 229,1\n    ''177'': 23,1\n    ''178'': 230,1\n    ''179'': 231,1\n    ''18'': 1010,1\n    ''180'': 232,1\n    ''181'': 233,1\n    ''182'': 234,1\n    ''183'': 235,1\n    ''184'': 236,1\n    ''185'': 237,1\n    ''186'': 238,1\n    ''187'': 239,1\n    ''188'': 239,2\n    ''189'': 24,1\n    ''19'': 1011,2\n    ''190'': 240,1\n    ''191'': 241,1\n    ''192'': 242,1\n    ''193'': 243,1\n    ''195'': 244,2\n    ''196'': 245,1\n    ''197'': 245,2\n    ''198'': 246,1\n    ''199'': 247,1\n    ''2'': 1,1\n    ''20'': 1012,2\n    ''200'': 248,1\n    ''201'': 249,1\n    ''202'': 25,1\n    ''203'': 250,1\n    ''204'': 251,1\n    ''205'': 251,2\n    ''206'': 252,1\n    ''207'': 253,1\n    ''208'': 254,1\n    ''209'': 255,1\n    ''21'': 1013,3\n    ''210'': 256,1\n    ''211'': 257,1\n    ''212'': 258,1\n    ''213'': 259,1\n    ''214'': 26,1\n    ''215'': 260,1\n    ''216'': 261,1\n    ''217'': 262,1\n    ''218'': 263,1\n    ''219'': 264,1\n    ''22'': 1013,4\n    ''220'': 265,1\n    ''221'': 266,1\n    ''222'': 267,1\n    ''223'': 268,1\n    ''224'': 269,1\n    ''225'': 27,1\n    ''226'': 270,1\n    ''227'': 271,1\n    ''228'': 272,1\n    ''229'': 273,1\n    ''23'': 102,2\n    ''230'': 274,1\n    ''231'': 275,1\n    ''232'': 276,1\n    ''233'': 277,1\n    ''234'': 278,1\n    ''235'': 279,1\n    ''236'': 28,1\n    ''237'': 280,1\n    ''238'': 281,1\n    ''239'': 282,1\n    ''24'': 103,1\n    ''240'': 283,1\n    ''241'': 284,1\n    ''242'': 285,1\n    ''243'': 286,1\n    ''244'': 287,1\n    ''245'': 288,1\n    ''246'': 289,1\n    ''247'': 29,1\n    ''248'': 290,1\n    ''249'': 291,1\n    ''25'': 104,1\n    ''250'': 292,1\n    ''252'': 293,2\n    ''253'': 294,1\n    ''255'': 295,2\n    ''256'': 296,1\n    ''257'': 297,1\n    ''258'': 298,1\n    ''259'': 299,1\n    ''26'': 105,1\n    ''260'': 3,1\n    ''261'': 30,1\n    ''262'': 300,1\n    ''263'': 301,1\n    ''264'': 302,1\n    ''265'': 303,1\n    ''266'': 304,1\n    ''267'': 305,1\n    ''268'': 306,1\n    ''269'': 307,1\n    ''27'': 106,1\n    ''270'': 308,1\n    ''272'': 309,2\n    ''273'': 31,1\n    ''275'': 310,2\n    ''276'': 311,1\n    ''277'': 312,1\n    ''278'': 313,1\n    ''279'': 314,1\n    ''28'': 107,1\n    ''280'': 315,1\n    ''281'': 316,1\n    ''283'': 317,2\n    ''284'': 318,1\n    ''285'': 318,2\n    ''287'': 319,2\n    ''288'': 32,1\n    ''289'': 320,1\n    ''29'': 108,1\n    ''290'': 321,1\n    ''291'': 322,1\n    ''292'': 323,1\n    ''294'': 324,3\n    ''295'': 325,1\n    ''296'': 326,1\n    ''297'': 327,1\n    ''299'': 328,3\n    ''3'': 10,1\n    ''30'': 109,1\n    ''300'': 329,1\n    ''301'': 33,1\n    ''302'': 330,1\n    ''303'': 331,1\n    ''304'': 332,1\n    ''305'': 333,1\n    ''306'': 334,1\n    ''308'': 335,2\n    ''309'': 336,1\n    ''31'': 11,1\n    ''310'': 337,1\n    ''311'': 338,1\n    ''312'': 339,1\n    ''313'': 34,1\n    ''314'': 340,1\n    ''315'': 341,2\n    ''316'': 342,1\n    ''317'': 343,1\n    ''318'': 344,1\n    ''319'': 345,2\n    ''320'': 346,1\n    ''321'': 347,1\n    ''322'': 348,1\n    ''323'': 349,2\n    ''324'': 35,1\n    ''326'': 350,2\n    ''327'': 351,1\n    ''328'': 352,2\n    ''329'': 353,1\n    ''33'': 110,2\n    ''330'': 354,1\n    ''331'': 355,1\n    ''332'': 356,1\n    ''333'': 357,1\n    ''334'': 358,1\n    ''335'': 359,1\n    ''336'': 36,1\n    ''337'': 360,1\n    ''339'': 361,2\n    ''34'': 111,1\n    ''340'': 362,1\n    ''341'': 363,1\n    ''342'': 364,1\n    ''343'': 365,1\n    ''344'': 366,1\n    ''345'': 367,1\n    ''346'': 368,1\n    ''347'': 369,1\n    ''348'': 37,1\n    ''349'': 370,1\n    ''35'': 112,1\n    ''350'': 370,2\n    ''351'': 371,1\n    ''352'': 372,1\n    ''353'': 373,1\n    ''354'': 374,1\n    ''355'': 375,1\n    ''356'': 376,1\n    ''357'': 377,1\n    ''358'': 378,1\n    ''359'': 379,1\n    ''36'': 113,1\n    ''360'': 38,1\n    ''361'': 380,1\n    ''362'': 381,1\n    ''363'': 382,1\n    ''364'': 382,2\n    ''365'': 383,1\n    ''366'': 384,1\n    ''368'': 385,2\n    ''369'': 386,1\n    ''37'': 114,1\n    ''370'': 387,1\n    ''371'': 388,1\n    ''372'': 389,1\n    ''374'': 39,2\n    ''375'': 390,1\n    ''376'': 391,1\n    ''377'': 392,1\n    ''378'': 393,1\n    ''379'': 394,1\n    ''38'': 115,1\n    ''380'': 395,1\n    ''381'': 396,1\n    ''382'': 397,1\n    ''383'': 398,1\n    ''384'': 399,1\n    ''385'': 4,1\n    ''386'': 40,1\n    ''387'': 400,1\n    ''388'': 401,1\n    ''389'': 402,1\n    ''39'': 116,2\n    ''390'': 403,1\n    ''391'': 404,1\n    ''392'': 405,1\n    ''393'': 406,1\n    ''394'': 406,2\n    ''395'': 407,1\n    ''396'': 408,1\n    ''397'': 409,1\n    ''398'': 41,1\n    ''399'': 410,1\n    ''4'': 100,1\n    ''40'': 117,1\n    ''400'': 411,1\n    ''401'': 412,1\n    ''403'': 413,2\n    ''404'': 414,1\n    ''405'': 415,1\n    ''406'': 416,1\n    ''408'': 417,2\n    ''41'': 118,1\n    ''410'': 418,2\n    ''411'': 419,1\n    ''412'': 42,1\n    ''413'': 420,1\n    ''414'': 421,1\n    ''415'': 422,1\n    ''416'': 423,1\n    ''417'': 424,1\n    ''418'': 425,1\n    ''419'': 426,1\n    ''42'': 119,1\n    ''420'': 427,1\n    ''421'': 428,1\n    ''422'': 429,1\n    ''423'': 43,1\n    ''424'': 430,1\n    ''425'': 431,1\n    ''426'': 432,1\n    ''427'': 433,1\n    ''428'': 434,1\n    ''429'': 435,1\n    ''43'': 12,1\n    ''430'': 436,1\n    ''431'': 437,1\n    ''432'': 438,1\n    ''433'': 439,1\n    ''434'': 44,2\n    ''435'': 440,1\n    ''436'': 441,1\n    ''437'': 442,1\n    ''438'': 443,1\n    ''439'': 444,1\n    ''44'': 120,1\n    ''440'': 445,1\n    ''441'': 446,1\n    ''442'': 447,1\n    ''443'': 448,1\n    ''444'': 449,1\n    ''445'': 45,1\n    ''446'': 450,1\n    ''447'': 451,1\n    ''448'': 452,1\n    ''449'': 453,1\n    ''45'': 121,1\n    ''450'': 454,1\n    ''451'': 455,1\n    ''452'': 456,1\n    ''453'': 457,1\n    ''454'': 458,1\n    ''455'': 459,1\n    ''456'': 459,2\n    ''457'': 46,1\n    ''458'': 460,1\n    ''459'': 461,1\n    ''46'': 122,1\n    ''460'': 462,1\n    ''461'': 463,1\n    ''462'': 464,1\n    ''463'': 465,1\n    ''464'': 466,1\n    ''465'': 467,1\n    ''466'': 468,1\n    ''467'': 469,1\n    ''468'': 47,1\n    ''469'': 470,1\n    ''47'': 123,1\n    ''470'': 471,1\n    ''471'': 472,1\n    ''472'': 473,1\n    ''473'': 474,1\n    ''474'': 475,1\n    ''475'': 476,1\n    ''476'': 477,1\n    ''477'': 478,1\n    ''478'': 479,1\n    ''479'': 48,1\n    ''48'': 124,1\n    ''480'': 480,1\n    ''481'': 481,1\n    ''482'': 482,1\n    ''483'': 483,1\n    ''484'': 484,1\n    ''485'': 485,1\n    ''486'': 486,1\n    ''487'': 487,1\n    ''488'': 488,1\n    ''489'': 489,1\n    ''49'': 125,1\n    ''490'': 49,1\n    ''491'': 490,1\n    ''492'': 491,1\n    ''493'': 492,1\n    ''496'': 493,3\n    ''497'': 493,4\n    ''498'': 494,2\n    ''499'': 495,1\n    ''5'': 1000,2\n    ''50'': 126,1\n    ''500'': 496,1\n    ''501'': 497,1\n    ''502'': 497,2\n    ''503'': 498,1\n    ''504'': 499,1\n    ''505'': 5,1\n    ''506'': 50,1\n    ''508'': 500,2\n    ''509'': 501,1\n    ''51'': 127,1\n    ''510'': 502,1\n    ''511'': 503,1\n    ''512'': 504,1\n    ''513'': 505,1\n    ''514'': 506,1\n    ''515'': 507,1\n    ''516'': 508,1\n    ''517'': 509,1\n    ''518'': 51,1\n    ''519'': 510,1\n    ''52'': 128,1\n    ''520'': 511,1\n    ''521'': 512,1\n    ''522'': 513,1\n    ''523'': 514,1\n    ''525'': 515,2\n    ''526'': 516,1\n    ''527'': 517,1\n    ''528'': 518,1\n    ''529'': 519,1\n    ''53'': 129,1\n    ''530'': 52,1\n    ''531'': 520,1\n    ''532'': 521,1\n    ''533'': 522,1\n    ''534'': 523,1\n    ''535'': 524,1\n    ''536'': 525,1\n    ''537'': 526,1\n    ''538'': 527,1\n    ''539'': 528,1\n    ''54'': 13,1\n    ''540'': 529,1\n    ''541'': 53,1\n    ''542'': 530,1\n    ''543'': 531,1\n    ''544'': 532,1\n    ''545'': 533,1\n    ''546'': 534,1\n    ''547'': 535,1\n    ''548'': 536,1\n    ''549'': 537,1\n    ''55'': 130,1\n    ''550'': 538,1\n    ''551'': 539,1\n    ''552'': 54,1\n    ''553'': 540,1\n    ''554'': 541,1\n    ''555'': 542,1\n    ''556'': 543,1\n    ''557'': 544,1\n    ''558'': 545,1\n    ''559'': 546,1\n    ''56'': 131,1\n    ''560'': 547,1\n    ''561'': 548,1\n    ''562'': 549,1\n    ''563'': 55,1\n    ''564'': 550,1\n    ''565'': 551,1\n    ''566'': 552,1\n    ''567'': 553,1\n    ''568'': 554,1\n    ''569'': 555,1\n    ''57'': 132,1\n    ''570'': 556,1\n    ''571'': 556,2\n    ''572'': 557,1\n    ''574'': 558,2\n    ''575'': 559,1\n    ''576'': 56,1\n    ''577'': 560,1\n    ''578'': 561,1\n    ''579'': 562,1\n    ''58'': 133,1\n    ''580'': 563,1\n    ''581'': 564,1\n    ''582'': 565,1\n    ''583'': 566,1\n    ''584'': 567,1\n    ''585'': 568,1\n    ''586'': 569,1\n    ''587'': 57,1\n    ''588'': 570,1\n    ''589'': 571,1\n    ''59'': 134,1\n    ''590'': 572,1\n    ''591'': 573,1\n    ''592'': 574,1\n    ''593'': 575,1\n    ''594'': 576,1\n    ''595'': 577,1\n    ''596'': 578,1\n    ''597'': 579,1\n    ''598'': 58,1\n    ''599'': 580,1\n    ''6'': 1001,2\n    ''60'': 135,1\n    ''600'': 581,1\n    ''601'': 582,1\n    ''602'': 583,1\n    ''603'': 584,1\n    ''604'': 585,1\n    ''605'': 586,1\n    ''606'': 586,2\n    ''607'': 587,2\n    ''608'': 588,2\n    ''609'': 589,1\n    ''610'': 59,1\n    ''611'': 590,2\n    ''612'': 591,2\n    ''613'': 592,2\n    ''614'': 593,2\n    ''615'': 594,2\n    ''616'': 595,1\n    ''617'': 596,2\n    ''619'': 597,3\n    ''62'': 136,2\n    ''620'': 598,2\n    ''621'': 599,2\n    ''622'': 6,1\n    ''623'': 60,1\n    ''624'': 600,1\n    ''625'': 601,2\n    ''626'': 602,2\n    ''627'': 603,1\n    ''628'': 604,2\n    ''629'': 605,2\n    ''63'': 137,1\n    ''630'': 606,1\n    ''631'': 607,1\n    ''632'': 608,1\n    ''633'': 609,2\n    ''634'': 61,1\n    ''635'': 610,1\n    ''636'': 611,3\n    ''637'': 612,2\n    ''638'': 613,2\n    ''639'': 614,2\n    ''64'': 138,1\n    ''640'': 615,2\n    ''641'': 615,3\n    ''642'': 616,2\n    ''644'': 617,3\n    ''645'': 618,2\n    ''646'': 619,2\n    ''647'': 62,1\n    ''648'': 620,2\n    ''649'': 621,2\n    ''65'': 139,1\n    ''650'': 622,2\n    ''651'': 623,1\n    ''652'': 624,2\n    ''653'': 625,2\n    ''654'': 626,2\n    ''655'': 627,2\n    ''656'': 628,2\n    ''657'': 629,2\n    ''658'': 63,1\n    ''659'': 630,1\n    ''66'': 14,1\n    ''660'': 631,2\n    ''661'': 632,2\n    ''662'': 632,3\n    ''663'': 633,1\n    ''664'': 634,2\n    ''665'': 634,3\n    ''666'': 635,2\n    ''668'': 636,3\n    ''669'': 637,2\n    ''67'': 140,1\n    ''670'': 638,2\n    ''671'': 639,1\n    ''672'': 64,1\n    ''673'': 640,2\n    ''674'': 641,1\n    ''675'': 642,2\n    ''676'': 643,2\n    ''677'': 644,1\n    ''678'': 645,2\n    ''679'': 646,2\n    ''68'': 141,1\n    ''680'': 647,2\n    ''681'': 648,2\n    ''682'': 649,2\n    ''683'': 65,1\n    ''684'': 650,2\n    ''685'': 651,1\n    ''686'': 652,1\n    ''687'': 653,2\n    ''688'': 654,2\n    ''689'': 655,2\n    ''690'': 656,2\n    ''691'': 657,2\n    ''692'': 658,2\n    ''693'': 659,2\n    ''694'': 66,1\n    ''695'': 660,2\n    ''696'': 661,2\n    ''697'': 662,2\n    ''698'': 663,1\n    ''699'': 664,2\n    ''7'': 1002,2\n    ''70'': 142,2\n    ''700'': 665,2\n    ''701'': 666,2\n    ''702'': 667,2\n    ''703'': 668,1\n    ''704'': 669,2\n    ''705'': 67,1\n    ''706'': 670,2\n    ''707'': 671,2\n    ''708'': 672,2\n    ''709'': 673,2\n    ''71'': 143,1\n    ''710'': 674,2\n    ''711'': 675,2\n    ''712'': 676,2\n    ''713'': 677,2\n    ''714'': 678,1\n    ''715'': 679,2\n    ''716'': 68,1\n    ''717'': 680,1\n    ''718'': 681,2\n    ''719'': 682,2\n    ''72'': 144,1\n    ''720'': 683,2\n    ''721'': 684,2\n    ''723'': 685,3\n    ''724'': 686,2\n    ''725'': 687,1\n    ''726'': 688,2\n    ''727'': 689,2\n    ''728'': 69,1\n    ''729'': 690,2\n    ''73'': 145,1\n    ''730'': 691,2\n    ''731'': 692,2\n    ''732'': 693,2\n    ''733'': 694,2\n    ''734'': 695,2\n    ''735'': 696,1\n    ''736'': 697,2\n    ''737'': 698,2\n    ''738'': 699,2\n    ''739'': 7,1\n    ''74'': 146,1\n    ''740'': 70,1\n    ''741'': 700,2\n    ''742'': 701,2\n    ''743'': 702,2\n    ''744'': 703,1\n    ''745'': 704,2\n    ''746'': 705,2\n    ''747'': 706,1\n    ''748'': 707,2\n    ''749'': 708,2\n    ''75'': 147,1\n    ''750'': 709,2\n    ''751'': 71,1\n    ''752'': 710,1\n    ''753'': 711,2\n    ''754'': 712,2\n    ''755'': 713,2\n    ''756'': 714,2\n    ''757'': 715,2\n    ''758'': 716,1\n    ''759'': 717,2\n    ''76'': 148,1\n    ''760'': 718,2\n    ''761'': 719,1\n    ''762'': 72,1\n    ''763'': 720,2\n    ''764'': 721,1\n    ''765'': 722,2\n    ''766'': 723,2\n    ''767'': 724,2\n    ''768'': 725,2\n    ''769'': 726,1\n    ''77'': 149,1\n    ''770'': 727,2\n    ''771'': 728,2\n    ''772'': 729,2\n    ''774'': 73,2\n    ''775'': 730,1\n    ''776'': 731,1\n    ''777'': 732,1\n    ''778'': 733,2\n    ''779'': 734,2\n    ''78'': 15,1\n    ''780'': 735,2\n    ''781'': 736,3\n    ''783'': 737,3\n    ''784'': 738,2\n    ''785'': 739,2\n    ''786'': 74,1\n    ''787'': 740,1\n    ''788'': 741,2\n    ''789'': 742,1\n    ''79'': 150,1\n    ''790'': 743,2\n    ''791'': 744,2\n    ''792'': 745,1\n    ''793'': 746,2\n    ''794'': 747,2\n    ''795'': 748,1\n    ''796'': 749,1\n    ''797'': 75,1\n    ''798'': 750,2\n    ''799'': 751,1\n    ''80'': 151,1\n    ''800'': 752,2\n    ''801'': 753,2\n    ''802'': 754,2\n    ''803'': 755,2\n    ''804'': 756,2\n    ''805'': 757,2\n    ''806'': 758,2\n    ''807'': 759,2\n    ''809'': 76,2\n    ''81'': 152,1\n    ''810'': 760,1\n    ''811'': 761,2\n    ''813'': 762,3\n    ''814'': 763,2\n    ''815'': 764,2\n    ''816'': 765,2\n    ''817'': 766,1\n    ''818'': 767,2\n    ''819'': 768,2\n    ''82'': 153,1\n    ''820'': 769,2\n    ''821'': 77,1\n    ''822'': 770,2\n    ''823'': 771,1\n    ''824'': 772,2\n    ''825'': 773,2\n    ''826'': 774,2\n    ''827'': 775,1\n    ''828'': 776,2\n    ''829'': 777,2\n    ''83'': 154,1\n    ''830'': 777,3\n    ''831'': 777,4\n    ''832'': 778,1\n    ''833'': 779,1\n    ''834'': 78,1\n    ''835'': 780,1\n    ''836'': 780,3\n    ''837'': 781,2\n    ''838'': 782,3\n    ''839'': 783,1\n    ''840'': 784,2\n    ''841'': 785,2\n    ''842'': 786,2\n    ''843'': 787,2\n    ''844'': 788,1\n    ''845'': 789,2\n    ''846'': 79,1\n    ''847'': 790,2\n    ''848'': 791,2\n    ''849'': 792,2\n    ''850'': 793,2\n    ''851'': 794,2\n    ''852'': 795,2\n    ''853'': 796,2\n    ''854'': 797,2\n    ''855'': 798,1\n    ''856'': 799,2\n    ''857'': 8,1\n    ''858'': 80,1\n    ''859'': 800,2\n    ''86'': 155,3\n    ''860'': 801,1\n    ''861'': 802,1\n    ''863'': 803,3\n    ''864'': 804,2\n    ''865'': 805,2\n    ''866'': 806,2\n    ''867'': 807,1\n    ''868'': 808,1\n    ''869'': 809,2\n    ''87'': 156,1\n    ''870'': 81,1\n    ''871'': 810,1\n    ''872'': 811,2\n    ''873'': 812,2\n    ''874'': 813,2\n    ''875'': 814,2\n    ''877'': 815,3\n    ''878'': 816,2\n    ''879'': 817,2\n    ''88'': 157,1\n    ''880'': 818,2\n    ''881'': 819,2\n    ''882'': 82,1\n    ''883'': 820,2\n    ''884'': 821,2\n    ''885'': 822,2\n    ''886'': 823,1\n    ''887'': 824,2\n    ''888'': 825,2\n    ''889'': 826,2\n    ''89'': 158,1\n    ''890'': 827,2\n    ''891'': 828,2\n    ''892'': 829,2\n    ''893'': 83,1\n    ''894'': 830,2\n    ''895'': 831,1\n    ''896'': 832,2\n    ''897'': 833,2\n    ''898'': 834,1\n    ''899'': 835,2\n    ''9'': 1003,3\n    ''90'': 159,1\n    ''900'': 836,2\n    ''902'': 837,3\n    ''903'': 838,2\n    ''904'': 839,2\n    ''905'': 84,1\n    ''906'': 840,2\n    ''907'': 841,2\n    ''908'': 842,1\n    ''909'': 843,2\n    ''91'': 16,1\n    ''910'': 844,1\n    ''911'': 845,2\n    ''912'': 846,1\n    ''913'': 847,2\n    ''914'': 848,2\n    ''915'': 849,1\n    ''916'': 85,1\n    ''917'': 850,2\n    ''918'': 851,2\n    ''919'': 852,2\n    ''92'': 160,1\n    ''920'': 853,2\n    ''921'': 854,2\n    ''922'': 855,2\n    ''923'': 856,2\n    ''924'': 857,2\n    ''925'': 858,2\n    ''926'': 859,2\n    ''927'': 86,1\n    ''928'': 860,2\n    ''929'': 861,2\n    ''93'': 161,1\n    ''930'': 862,2\n    ''931'': 863,1\n    ''932'': 864,2\n    ''933'': 865,2\n    ''934'': 866,2\n    ''935'': 867,2\n    ''936'': 868,2\n    ''937'': 869,2\n    ''938'': 87,1\n    ''939'': 870,2\n    ''94'': 162,1\n    ''940'': 871,2\n    ''941'': 872,2\n    ''942'': 873,2\n    ''943'': 874,1\n    ''944'': 875,1\n    ''945'': 876,2\n    ''946'': 877,2\n    ''947'': 878,2\n    ''948'': 879,1\n    ''949'': 88,1\n    ''95'': 163,1\n    ''950'': 880,2\n    ''951'': 881,2\n    ''952'': 882,1\n    ''953'': 883,2\n    ''954'': 884,2\n    ''955'': 885,3\n    ''956'': 886,2\n    ''957'': 887,1\n    ''958'': 888,2\n    ''959'': 889,2\n    ''96'': 164,1\n    ''960'': 89,1\n    ''961'': 890,2\n    ''962'': 891,2\n    ''963'': 892,2\n    ''964'': 893,2\n    ''965'': 894,2\n    ''966'': 895,2\n    ''967'': 896,2\n    ''968'': 897,2\n    ''969'': 898,2\n    ''97'': 165,1\n    ''970'': 899,2\n    ''971'': 9,1\n    ''972'': 90,1\n    ''973'': 900,2\n    ''974'': 901,2\n    ''975'': 902,1\n    ''976'': 903,1\n    ''977'': 904,2\n    ''978'': 905,2\n    ''979'': 906,2\n    ''98'': 166,1\n    ''980'': 907,2\n    ''981'': 908,2\n    ''982'': 909,2\n    ''984'': 91,2\n    ''985'': 91,3\n    ''986'': 910,2\n    ''987'': 911,2\n    ''988'': 912,2\n    ''989'': 913,1\n    ''99'': 167,1\n    ''990'': 914,2\n    ''992'': 915,3\n    ''993'': 916,2\n    ''994'': 917,2\n    ''995'': 918,2\n    ''996'': 919,1\n    ''997'': 92,1\n    ''998'': 920,2\n    ''999'': 921,2\n  - ''#END#'': 1\n    ''#START#'': 0\n    1,1: 2\n    10,1: 3\n    100,1: 4\n    1000,2: 5\n    1001,2: 6\n    1002,2: 7\n    1003,3: 9\n    1004,2: 1120\n    1004,3: 1121\n    1005,2: 12\n    1006,2: 13\n    1007,2: 14\n    1008,2: 15\n    1009,2: 16\n    101,1: 17\n    1010,1: 18\n    1011,2: 19\n    1012,2: 20\n    1013,3: 21\n    1013,4: 22\n    102,2: 23\n    103,1: 24\n    104,1: 25\n    105,1: 26\n    106,1: 27\n    107,1: 28\n    108,1: 29\n    109,1: 30\n    11,1: 31\n    110,2: 33\n    111,1: 34\n    112,1: 35\n    113,1: 36\n    114,1: 37\n    115,1: 38\n    116,2: 39\n    117,1: 40\n    118,1: 41\n    119,1: 42\n    12,1: 43\n    120,1: 44\n    121,1: 45\n    122,1: 46\n    123,1: 47\n    124,1: 48\n    125,1: 49\n    126,1: 50\n    127,1: 51\n    128,1: 52\n    129,1: 53\n    13,1: 54\n    130,1: 55\n    131,1: 56\n    132,1: 57\n    133,1: 58\n    134,1: 59\n    135,1: 60\n    136,2: 62\n    137,1: 63\n    138,1: 64\n    139,1: 65\n    14,1: 66\n    140,1: 67\n    141,1: 68\n    142,2: 70\n    143,1: 71\n    144,1: 72\n    145,1: 73\n    146,1: 74\n    147,1: 75\n    148,1: 76\n    149,1: 77\n    15,1: 78\n    150,1: 79\n    151,1: 80\n    152,1: 81\n    153,1: 82\n    154,1: 83\n    155,3: 86\n    156,1: 87\n    157,1: 88\n    158,1: 89\n    159,1: 90\n    16,1: 91\n    160,1: 92\n    161,1: 93\n    162,1: 94\n    163,1: 95\n    164,1: 96\n    165,1: 97\n    166,1: 98\n    167,1: 99\n    168,1: 100\n    169,1: 101\n    17,1: 102\n    170,2: 104\n    171,1: 105\n    172,1: 106\n    173,1: 107\n    174,2: 108\n    175,1: 109\n    176,1: 110\n    177,1: 111\n    178,1: 112\n    179,1: 113\n    18,1: 114\n    180,1: 115\n    181,1: 116\n    182,2: 118\n    183,1: 119\n    184,1: 120\n    185,1: 121\n    186,1: 122\n    187,1: 123\n    188,1: 124\n    189,1: 125\n    19,1: 126\n    190,1: 127\n    191,1: 128\n    192,1: 129\n    193,1: 130\n    194,1: 131\n    195,1: 132\n    196,1: 133\n    197,1: 134\n    198,1: 135\n    199,1: 136\n    2,1: 137\n    20,1: 139\n    200,1: 140\n    201,1: 141\n    202,1: 142\n    203,1: 143\n    204,1: 144\n    205,2: 145\n    205,4: 147\n    205,5: 148\n    205,6: 149\n    206,1: 150\n    207,1: 151\n    208,1: 152\n    209,1: 153\n    21,1: 154\n    210,1: 155\n    211,1: 156\n    212,1: 157\n    213,1: 158\n    214,1: 159\n    215,1: 160\n    216,1: 161\n    217,1: 162\n    218,1: 163\n    219,2: 165\n    22,1: 166\n    220,1: 167\n    221,1: 168\n    222,1: 169\n    223,1: 170\n    224,1: 171\n    225,1: 172\n    226,1: 173\n    227,1: 174\n    228,1: 175\n    229,1: 176\n    23,1: 177\n    230,1: 178\n    231,1: 179\n    232,1: 180\n    233,1: 181\n    234,1: 182\n    235,1: 183\n    236,1: 184\n    237,1: 185\n    238,1: 186\n    239,1: 187\n    239,2: 188\n    24,1: 189\n    240,1: 190\n    241,1: 191\n    242,1: 192\n    243,1: 193\n    244,2: 195\n    245,1: 196\n    245,2: 197\n    246,1: 198\n    247,1: 199\n    248,1: 200\n    249,1: 201\n    25,1: 202\n    250,1: 203\n    251,1: 204\n    251,2: 205\n    252,1: 206\n    253,1: 207\n    254,1: 208\n    255,1: 209\n    256,1: 210\n    257,1: 211\n    258,1: 212\n    259,1: 213\n    26,1: 214\n    260,1: 215\n    261,1: 216\n    262,1: 217\n    263,1: 218\n    264,1: 219\n    265,1: 220\n    266,1: 221\n    267,1: 222\n    268,1: 223\n    269,1: 224\n    27,1: 225\n    270,1: 226\n    271,1: 227\n    272,1: 228\n    273,1: 229\n    274,1: 230\n    275,1: 231\n    276,1: 232\n    277,1: 233\n    278,1: 234\n    279,1: 235\n    28,1: 236\n    280,1: 237\n    281,1: 238\n    282,1: 239\n    283,1: 240\n    284,1: 241\n    285,1: 242\n    286,1: 243\n    287,1: 244\n    288,1: 245\n    289,1: 246\n    29,1: 247\n    290,1: 248\n    291,1: 249\n    292,1: 250\n    293,2: 252\n    294,1: 253\n    295,2: 255\n    296,1: 256\n    297,1: 257\n    298,1: 258\n    299,1: 259\n    3,1: 260\n    30,1: 261\n    300,1: 262\n    301,1: 263\n    302,1: 264\n    303,1: 265\n    304,1: 266\n    305,1: 267\n    306,1: 268\n    307,1: 269\n    308,1: 270\n    309,2: 272\n    31,1: 273\n    310,2: 275\n    311,1: 276\n    312,1: 277\n    313,1: 278\n    314,1: 279\n    315,1: 280\n    316,1: 281\n    317,2: 283\n    318,1: 284\n    318,2: 285\n    319,2: 287\n    32,1: 288\n    320,1: 289\n    321,1: 290\n    322,1: 291\n    323,1: 292\n    324,3: 294\n    325,1: 295\n    326,1: 296\n    327,1: 297\n    328,3: 299\n    329,1: 300\n    33,1: 301\n    330,1: 302\n    331,1: 303\n    332,1: 304\n    333,1: 305\n    334,1: 306\n    335,2: 308\n    336,1: 309\n    337,1: 310\n    338,1: 311\n    339,1: 312\n    34,1: 313\n    340,1: 314\n    341,2: 315\n    342,1: 316\n    343,1: 317\n    344,1: 318\n    345,2: 319\n    346,1: 320\n    347,1: 321\n    348,1: 322\n    349,2: 323\n    35,1: 324\n    350,2: 326\n    351,1: 327\n    352,2: 328\n    353,1: 329\n    354,1: 330\n    355,1: 331\n    356,1: 332\n    357,1: 333\n    358,1: 334\n    359,1: 335\n    36,1: 336\n    360,1: 337\n    361,2: 339\n    362,1: 340\n    363,1: 341\n    364,1: 342\n    365,1: 343\n    366,1: 344\n    367,1: 345\n    368,1: 346\n    369,1: 347\n    37,1: 348\n    370,1: 349\n    370,2: 350\n    371,1: 351\n    372,1: 352\n    373,1: 353\n    374,1: 354\n    375,1: 355\n    376,1: 356\n    377,1: 357\n    378,1: 358\n    379,1: 359\n    38,1: 360\n    380,1: 361\n    381,1: 362\n    382,1: 363\n    382,2: 364\n    383,1: 365\n    384,1: 366\n    385,2: 368\n    386,1: 369\n    387,1: 370\n    388,1: 371\n    389,1: 372\n    39,2: 374\n    390,1: 375\n    391,1: 376\n    392,1: 377\n    393,1: 378\n    394,1: 379\n    395,1: 380\n    396,1: 381\n    397,1: 382\n    398,1: 383\n    399,1: 384\n    4,1: 385\n    40,1: 386\n    400,1: 387\n    401,1: 388\n    402,1: 389\n    403,1: 390\n    404,1: 391\n    405,1: 392\n    406,1: 393\n    406,2: 394\n    407,1: 395\n    408,1: 396\n    409,1: 397\n    41,1: 398\n    410,1: 399\n    411,1: 400\n    412,1: 401\n    413,2: 403\n    414,1: 404\n    415,1: 405\n    416,1: 406\n    417,2: 408\n    418,2: 410\n    419,1: 411\n    42,1: 412\n    420,1: 413\n    421,1: 414\n    422,1: 415\n    423,1: 416\n    424,1: 417\n    425,1: 418\n    426,1: 419\n    427,1: 420\n    428,1: 421\n    429,1: 422\n    43,1: 423\n    430,1: 424\n    431,1: 425\n    432,1: 426\n    433,1: 427\n    434,1: 428\n    435,1: 429\n    436,1: 430\n    437,1: 431\n    438,1: 432\n    439,1: 433\n    44,2: 434\n    440,1: 435\n    441,1: 436\n    442,1: 437\n    443,1: 438\n    444,1: 439\n    445,1: 440\n    446,1: 441\n    447,1: 442\n    448,1: 443\n    449,1: 444\n    45,1: 445\n    450,1: 446\n    451,1: 447\n    452,1: 448\n    453,1: 449\n    454,1: 450\n    455,1: 451\n    456,1: 452\n    457,1: 453\n    458,1: 454\n    459,1: 455\n    459,2: 456\n    46,1: 457\n    460,1: 458\n    461,1: 459\n    462,1: 460\n    463,1: 461\n    464,1: 462\n    465,1: 463\n    466,1: 464\n    467,1: 465\n    468,1: 466\n    469,1: 467\n    47,1: 468\n    470,1: 469\n    471,1: 470\n    472,1: 471\n    473,1: 472\n    474,1: 473\n    475,1: 474\n    476,1: 475\n    477,1: 476\n    478,1: 477\n    479,1: 478\n    48,1: 479\n    480,1: 480\n    481,1: 481\n    482,1: 482\n    483,1: 483\n    484,1: 484\n    485,1: 485\n    486,1: 486\n    487,1: 487\n    488,1: 488\n    489,1: 489\n    49,1: 490\n    490,1: 491\n    491,1: 492\n    492,1: 493\n    493,3: 496\n    493,4: 497\n    494,2: 498\n    495,1: 499\n    496,1: 500\n    497,1: 501\n    497,2: 502\n    498,1: 503\n    499,1: 504\n    5,1: 505\n    50,1: 506\n    500,2: 508\n    501,1: 509\n    502,1: 510\n    503,1: 511\n    504,1: 512\n    505,1: 513\n    506,1: 514\n    507,1: 515\n    508,1: 516\n    509,1: 517\n    51,1: 518\n    510,1: 519\n    511,1: 520\n    512,1: 521\n    513,1: 522\n    514,1: 523\n    515,2: 525\n    516,1: 526\n    517,1: 527\n    518,1: 528\n    519,1: 529\n    52,1: 530\n    520,1: 531\n    521,1: 532\n    522,1: 533\n    523,1: 534\n    524,1: 535\n    525,1: 536\n    526,1: 537\n    527,1: 538\n    528,1: 539\n    529,1: 540\n    53,1: 541\n    530,1: 542\n    531,1: 543\n    532,1: 544\n    533,1: 545\n    534,1: 546\n    535,1: 547\n    536,1: 548\n    537,1: 549\n    538,1: 550\n    539,1: 551\n    54,1: 552\n    540,1: 553\n    541,1: 554\n    542,1: 555\n    543,1: 556\n    544,1: 557\n    545,1: 558\n    546,1: 559\n    547,1: 560\n    548,1: 561\n    549,1: 562\n    55,1: 563\n    550,1: 564\n    551,1: 565\n    552,1: 566\n    553,1: 567\n    554,1: 568\n    555,1: 569\n    556,1: 570\n    556,2: 571\n    557,1: 572\n    558,2: 574\n    559,1: 575\n    56,1: 576\n    560,1: 577\n    561,1: 578\n    562,1: 579\n    563,1: 580\n    564,1: 581\n    565,1: 582\n    566,1: 583\n    567,1: 584\n    568,1: 585\n    569,1: 586\n    57,1: 587\n    570,1: 588\n    571,1: 589\n    572,1: 590\n    573,1: 591\n    574,1: 592\n    575,1: 593\n    576,1: 594\n    577,1: 595\n    578,1: 596\n    579,1: 597\n    58,1: 598\n    580,1: 599\n    581,1: 600\n    582,1: 601\n    583,1: 602\n    584,1: 603\n    585,1: 604\n    586,1: 605\n    586,2: 606\n    587,2: 607\n    588,2: 608\n    589,1: 609\n    59,1: 610\n    590,2: 611\n    591,2: 612\n    592,2: 613\n    593,2: 614\n    594,2: 615\n    595,1: 616\n    596,2: 617\n    597,3: 619\n    598,2: 620\n    599,2: 621\n    6,1: 622\n    60,1: 623\n    600,1: 624\n    601,2: 625\n    602,2: 626\n    603,1: 627\n    604,2: 628\n    605,2: 629\n    606,1: 630\n    607,1: 631\n    608,1: 632\n    609,2: 633\n    61,1: 634\n    610,1: 635\n    611,3: 636\n    612,2: 637\n    613,2: 638\n    614,2: 639\n    615,2: 640\n    615,3: 641\n    616,2: 642\n    617,3: 644\n    618,2: 645\n    619,2: 646\n    62,1: 647\n    620,2: 648\n    621,2: 649\n    622,2: 650\n    623,1: 651\n    624,2: 652\n    625,2: 653\n    626,2: 654\n    627,2: 655\n    628,2: 656\n    629,2: 657\n    63,1: 658\n    630,1: 659\n    631,2: 660\n    632,2: 661\n    632,3: 662\n    633,1: 663\n    634,2: 664\n    634,3: 665\n    635,2: 666\n    636,3: 668\n    637,2: 669\n    638,2: 670\n    639,1: 671\n    64,1: 672\n    640,2: 673\n    641,1: 674\n    642,2: 675\n    643,2: 676\n    644,1: 677\n    645,2: 678\n    646,2: 679\n    647,2: 680\n    648,2: 681\n    649,2: 682\n    65,1: 683\n    650,2: 684\n    651,1: 685\n    652,1: 686\n    653,2: 687\n    654,2: 688\n    655,2: 689\n    656,2: 690\n    657,2: 691\n    658,2: 692\n    659,2: 693\n    66,1: 694\n    660,2: 695\n    661,2: 696\n    662,2: 697\n    663,1: 698\n    664,2: 699\n    665,2: 700\n    666,2: 701\n    667,2: 702\n    668,1: 703\n    669,2: 704\n    67,1: 705\n    670,2: 706\n    671,2: 707\n    672,2: 708\n    673,2: 709\n    674,2: 710\n    675,2: 711\n    676,2: 712\n    677,2: 713\n    678,1: 714\n    679,2: 715\n    68,1: 716\n    680,1: 717\n    681,2: 718\n    682,2: 719\n    683,2: 720\n    684,2: 721\n    685,3: 723\n    686,2: 724\n    687,1: 725\n    688,2: 726\n    689,2: 727\n    69,1: 728\n    690,2: 729\n    691,2: 730\n    692,2: 731\n    693,2: 732\n    694,2: 733\n    695,2: 734\n    696,1: 735\n    697,2: 736\n    698,2: 737\n    699,2: 738\n    7,1: 739\n    70,1: 740\n    700,2: 741\n    701,2: 742\n    702,2: 743\n    703,1: 744\n    704,2: 745\n    705,2: 746\n    706,1: 747\n    707,2: 748\n    708,2: 749\n    709,2: 750\n    71,1: 751\n    710,1: 752\n    711,2: 753\n    712,2: 754\n    713,2: 755\n    714,2: 756\n    715,2: 757\n    716,1: 758\n    717,2: 759\n    718,2: 760\n    719,1: 761\n    72,1: 762\n    720,2: 763\n    721,1: 764\n    722,2: 765\n    723,2: 766\n    724,2: 767\n    725,2: 768\n    726,1: 769\n    727,2: 770\n    728,2: 771\n    729,2: 772\n    73,2: 774\n    730,1: 775\n    731,1: 776\n    732,1: 777\n    733,2: 778\n    734,2: 779\n    735,2: 780\n    736,3: 781\n    737,3: 783\n    738,2: 784\n    739,2: 785\n    74,1: 786\n    740,1: 787\n    741,2: 788\n    742,1: 789\n    743,2: 790\n    744,2: 791\n    745,1: 792\n    746,2: 793\n    747,2: 794\n    748,1: 795\n    749,1: 796\n    75,1: 797\n    750,2: 798\n    751,1: 799\n    752,2: 800\n    753,2: 801\n    754,2: 802\n    755,2: 803\n    756,2: 804\n    757,2: 805\n    758,2: 806\n    759,2: 807\n    76,2: 809\n    760,1: 810\n    761,2: 811\n    762,3: 813\n    763,2: 814\n    764,2: 815\n    765,2: 816\n    766,1: 817\n    767,2: 818\n    768,2: 819\n    769,2: 820\n    77,1: 821\n    770,2: 822\n    771,1: 823\n    772,2: 824\n    773,2: 825\n    774,2: 826\n    775,1: 827\n    776,2: 828\n    777,2: 829\n    777,3: 830\n    777,4: 831\n    778,1: 832\n    779,1: 833\n    78,1: 834\n    780,1: 835\n    780,3: 836\n    781,2: 837\n    782,3: 838\n    783,1: 839\n    784,2: 840\n    785,2: 841\n    786,2: 842\n    787,2: 843\n    788,1: 844\n    789,2: 845\n    79,1: 846\n    790,2: 847\n    791,2: 848\n    792,2: 849\n    793,2: 850\n    794,2: 851\n    795,2: 852\n    796,2: 853\n    797,2: 854\n    798,1: 855\n    799,2: 856\n    8,1: 857\n    80,1: 858\n    800,2: 859\n    801,1: 860\n    802,1: 861\n    803,3: 863\n    804,2: 864\n    805,2: 865\n    806,2: 866\n    807,1: 867\n    808,1: 868\n    809,2: 869\n    81,1: 870\n    810,1: 871\n    811,2: 872\n    812,2: 873\n    813,2: 874\n    814,2: 875\n    815,3: 877\n    816,2: 878\n    817,2: 879\n    818,2: 880\n    819,2: 881\n    82,1: 882\n    820,2: 883\n    821,2: 884\n    822,2: 885\n    823,1: 886\n    824,2: 887\n    825,2: 888\n    826,2: 889\n    827,2: 890\n    828,2: 891\n    829,2: 892\n    83,1: 893\n    830,2: 894\n    831,1: 895\n    832,2: 896\n    833,2: 897\n    834,1: 898\n    835,2: 899\n    836,2: 900\n    837,3: 902\n    838,2: 903\n    839,2: 904\n    84,1: 905\n    840,2: 906\n    841,2: 907\n    842,1: 908\n    843,2: 909\n    844,1: 910\n    845,2: 911\n    846,1: 912\n    847,2: 913\n    848,2: 914\n    849,1: 915\n    85,1: 916\n    850,2: 917\n    851,2: 918\n    852,2: 919\n    853,2: 920\n    854,2: 921\n    855,2: 922\n    856,2: 923\n    857,2: 924\n    858,2: 925\n    859,2: 926\n    86,1: 927\n    860,2: 928\n    861,2: 929\n    862,2: 930\n    863,1: 931\n    864,2: 932\n    865,2: 933\n    866,2: 934\n    867,2: 935\n    868,2: 936\n    869,2: 937\n    87,1: 938\n    870,2: 939\n    871,2: 940\n    872,2: 941\n    873,2: 942\n    874,1: 943\n    875,1: 944\n    876,2: 945\n    877,2: 946\n    878,2: 947\n    879,1: 948\n    88,1: 949\n    880,2: 950\n    881,2: 951\n    882,1: 952\n    883,2: 953\n    884,2: 954\n    885,3: 955\n    886,2: 956\n    887,1: 957\n    888,2: 958\n    889,2: 959\n    89,1: 960\n    890,2: 961\n    891,2: 962\n    892,2: 963\n    893,2: 964\n    894,2: 965\n    895,2: 966\n    896,2: 967\n    897,2: 968\n    898,2: 969\n    899,2: 970\n    9,1: 971\n    90,1: 972\n    900,2: 973\n    901,2: 974\n    902,1: 975\n    903,1: 976\n    904,2: 977\n    905,2: 978\n    906,2: 979\n    907,2: 980\n    908,2: 981\n    909,2: 982\n    91,2: 984\n    91,3: 985\n    910,2: 986\n    911,2: 987\n    912,2: 988\n    913,1: 989\n    914,2: 990\n    915,3: 992\n    916,2: 993\n    917,2: 994\n    918,2: 995\n    919,1: 996\n    92,1: 997\n    920,2: 998\n    921,2: 999\n    922,2: 1000\n    923,2: 1001\n    924,2: 1002\n    925,3: 1004\n    926,2: 1005\n    927,3: 1007\n    928,2: 1008\n    929,2: 1009\n    93,3: 1012\n    930,2: 1013\n    931,2: 1014\n    932,2: 1015\n    933,2: 1016\n    934,2: 1017\n    935,2: 1018\n    936,2: 1019\n    937,2: 1020\n    938,2: 1021\n    939,1: 1022\n    94,1: 1023\n    940,2: 1024\n    941,2: 1025\n    942,2: 1026\n    943,1: 1027\n    944,2: 1028\n    945,2: 1029\n    946,2: 1030\n    947,1: 1031\n    948,2: 1032\n    949,2: 1033\n    95,1: 1034\n    950,2: 1035\n    951,2: 1036\n    952,2: 1037\n    953,2: 1038\n    954,3: 1040\n    955,1: 1041\n    956,2: 1042\n    957,2: 1043\n    958,2: 1044\n    959,2: 1045\n    96,1: 1046\n    960,1: 1047\n    961,2: 1048\n    962,2: 1049\n    963,2: 1050\n    964,2: 1051\n    965,2: 1052\n    966,2: 1053\n    967,2: 1054\n    968,1: 1055\n    969,4: 1058\n    97,1: 1059\n    970,2: 1060\n    971,2: 1061\n    972,1: 1062\n    973,3: 1064\n    974,3: 1066\n    975,2: 1067\n    976,2: 1068\n    977,2: 1069\n    978,2: 1070\n    979,2: 1071\n    98,1: 1072\n    980,1: 1073\n    981,1: 1074\n    982,2: 1075\n    983,2: 1076\n    984,2: 1077\n    985,2: 1078\n    986,1: 1079\n    987,2: 1080\n    988,2: 1081\n    989,2: 1082\n    99,2: 1084\n    990,2: 1085\n    991,2: 1086\n    992,2: 1087\n    993,2: 1088\n    994,1: 1089\n    995,2: 1090\n    996,2: 1091\n    997,2: 1092\n    998,1: 1093\n    999,2: 1094\n  - {}\n  - *1\n- !!perl/array:Graph::AdjacencyMap::Light\n  - 1314\n  - 128\n  - 2\n  - ''0'':\n    - 0\n    - 2\n    ''1'':\n    - 2\n    - 137\n    ''100'':\n    - 92\n    - 93\n    ''1000'':\n    - 922\n    - 923\n    ''1001'':\n    - 923\n    - 924\n    ''1002'':\n    - 924\n    - 925\n    ''1003'':\n    - 925\n    - 926\n    ''1004'':\n    - 926\n    - 928\n    ''1005'':\n    - 927\n    - 938\n    ''1006'':\n    - 928\n    - 929\n    ''1007'':\n    - 929\n    - 930\n    ''1008'':\n    - 930\n    - 931\n    ''1009'':\n    - 931\n    - 932\n    ''101'':\n    - 93\n    - 94\n    ''1010'':\n    - 932\n    - 933\n    ''1011'':\n    - 933\n    - 934\n    ''1012'':\n    - 934\n    - 935\n    ''1013'':\n    - 935\n    - 936\n    ''1014'':\n    - 936\n    - 937\n    ''1015'':\n    - 937\n    - 939\n    ''1016'':\n    - 938\n    - 949\n    ''1017'':\n    - 939\n    - 940\n    ''1018'':\n    - 940\n    - 941\n    ''1019'':\n    - 941\n    - 942\n    ''102'':\n    - 94\n    - 95\n    ''1020'':\n    - 942\n    - 943\n    ''1021'':\n    - 943\n    - 944\n    ''1022'':\n    - 944\n    - 945\n    ''1023'':\n    - 945\n    - 946\n    ''1024'':\n    - 946\n    - 947\n    ''1025'':\n    - 947\n    - 948\n    ''1026'':\n    - 948\n    - 950\n    ''1027'':\n    - 949\n    - 960\n    ''1028'':\n    - 950\n    - 951\n    ''1029'':\n    - 951\n    - 952\n    ''103'':\n    - 95\n    - 96\n    ''1030'':\n    - 952\n    - 953\n    ''1031'':\n    - 953\n    - 954\n    ''1032'':\n    - 954\n    - 955\n    ''1033'':\n    - 955\n    - 956\n    ''1034'':\n    - 956\n    - 957\n    ''1035'':\n    - 957\n    - 958\n    ''1036'':\n    - 958\n    - 959\n    ''1037'':\n    - 959\n    - 961\n    ''1038'':\n    - 960\n    - 972\n    ''1039'':\n    - 961\n    - 962\n    ''104'':\n    - 96\n    - 97\n    ''1040'':\n    - 962\n    - 963\n    ''1041'':\n    - 963\n    - 964\n    ''1042'':\n    - 964\n    - 965\n    ''1043'':\n    - 965\n    - 966\n    ''1044'':\n    - 965\n    - 967\n    ''1045'':\n    - 966\n    - 967\n    ''1046'':\n    - 967\n    - 970\n    ''1047'':\n    - 967\n    - 968\n    ''1048'':\n    - 968\n    - 969\n    ''1049'':\n    - 969\n    - 970\n    ''105'':\n    - 97\n    - 98\n    ''1050'':\n    - 970\n    - 973\n    ''1051'':\n    - 971\n    - 3\n    ''1052'':\n    - 972\n    - 985\n    ''1054'':\n    - 972\n    - 984\n    ''1055'':\n    - 973\n    - 974\n    ''1056'':\n    - 974\n    - 975\n    ''1057'':\n    - 975\n    - 976\n    ''1058'':\n    - 976\n    - 977\n    ''1059'':\n    - 977\n    - 978\n    ''106'':\n    - 98\n    - 99\n    ''1060'':\n    - 978\n    - 979\n    ''1061'':\n    - 979\n    - 980\n    ''1062'':\n    - 980\n    - 981\n    ''1063'':\n    - 981\n    - 982\n    ''1064'':\n    - 982\n    - 986\n    ''1066'':\n    - 984\n    - 997\n    ''1067'':\n    - 985\n    - 997\n    ''1068'':\n    - 986\n    - 987\n    ''1069'':\n    - 987\n    - 988\n    ''107'':\n    - 99\n    - 100\n    ''1070'':\n    - 988\n    - 989\n    ''1071'':\n    - 989\n    - 990\n    ''1073'':\n    - 990\n    - 992\n    ''1075'':\n    - 992\n    - 994\n    ''1076'':\n    - 993\n    - 994\n    ''1077'':\n    - 994\n    - 995\n    ''1078'':\n    - 995\n    - 996\n    ''1079'':\n    - 996\n    - 998\n    ''108'':\n    - 100\n    - 101\n    ''1081'':\n    - 997\n    - 1012\n    ''1083'':\n    - 998\n    - 999\n    ''1084'':\n    - 999\n    - 1000\n    ''1085'':\n    - 1000\n    - 1001\n    ''1086'':\n    - 1001\n    - 1002\n    ''1088'':\n    - 1002\n    - 1004\n    ''1090'':\n    - 1004\n    - 1005\n    ''1091'':\n    - 1005\n    - 1007\n    ''1094'':\n    - 1007\n    - 1008\n    ''1095'':\n    - 1008\n    - 1009\n    ''1096'':\n    - 1009\n    - 1013\n    ''110'':\n    - 101\n    - 104\n    ''1100'':\n    - 1012\n    - 1023\n    ''1101'':\n    - 1013\n    - 1014\n    ''1102'':\n    - 1014\n    - 1015\n    ''1103'':\n    - 1015\n    - 1016\n    ''1104'':\n    - 1016\n    - 1017\n    ''1105'':\n    - 1017\n    - 1018\n    ''1106'':\n    - 1018\n    - 1019\n    ''1107'':\n    - 1019\n    - 1020\n    ''1108'':\n    - 1020\n    - 1021\n    ''1109'':\n    - 1021\n    - 1022\n    ''111'':\n    - 102\n    - 114\n    ''1110'':\n    - 1022\n    - 1024\n    ''1111'':\n    - 1023\n    - 1034\n    ''1112'':\n    - 1024\n    - 1025\n    ''1113'':\n    - 1025\n    - 1026\n    ''1114'':\n    - 1026\n    - 1027\n    ''1115'':\n    - 1027\n    - 1028\n    ''1116'':\n    - 1028\n    - 1029\n    ''1117'':\n    - 1029\n    - 1030\n    ''1118'':\n    - 1030\n    - 1031\n    ''1119'':\n    - 1031\n    - 1032\n    ''1120'':\n    - 1032\n    - 1033\n    ''1121'':\n    - 1033\n    - 1035\n    ''1122'':\n    - 1034\n    - 1046\n    ''1123'':\n    - 1035\n    - 1036\n    ''1124'':\n    - 1036\n    - 1038\n    ''1125'':\n    - 1036\n    - 1037\n    ''1126'':\n    - 1037\n    - 1038\n    ''1128'':\n    - 1038\n    - 1040\n    ''113'':\n    - 104\n    - 105\n    ''1130'':\n    - 1040\n    - 1041\n    ''1131'':\n    - 1041\n    - 1042\n    ''1132'':\n    - 1042\n    - 1043\n    ''1133'':\n    - 1043\n    - 1044\n    ''1134'':\n    - 1044\n    - 1045\n    ''1135'':\n    - 1045\n    - 1047\n    ''1136'':\n    - 1046\n    - 1059\n    ''1137'':\n    - 1047\n    - 1048\n    ''1138'':\n    - 1048\n    - 1049\n    ''1139'':\n    - 1049\n    - 1050\n    ''114'':\n    - 105\n    - 106\n    ''1140'':\n    - 1050\n    - 1051\n    ''1141'':\n    - 1051\n    - 1052\n    ''1142'':\n    - 1052\n    - 1053\n    ''1143'':\n    - 1053\n    - 1054\n    ''1144'':\n    - 1054\n    - 1055\n    ''1146'':\n    - 1055\n    - 1058\n    ''115'':\n    - 106\n    - 107\n    ''1150'':\n    - 1058\n    - 1060\n    ''1151'':\n    - 1059\n    - 1072\n    ''1152'':\n    - 1060\n    - 1061\n    ''1153'':\n    - 1061\n    - 1062\n    ''1154'':\n    - 1061\n    - 1064\n    ''1158'':\n    - 1064\n    - 1066\n    ''116'':\n    - 107\n    - 108\n    ''1160'':\n    - 1066\n    - 1067\n    ''1161'':\n    - 1067\n    - 1068\n    ''1162'':\n    - 1068\n    - 1069\n    ''1163'':\n    - 1069\n    - 1070\n    ''1164'':\n    - 1070\n    - 1071\n    ''1165'':\n    - 1071\n    - 1073\n    ''1166'':\n    - 1072\n    - 1084\n    ''1168'':\n    - 1073\n    - 1074\n    ''1169'':\n    - 1074\n    - 1075\n    ''117'':\n    - 108\n    - 109\n    ''1170'':\n    - 1075\n    - 1076\n    ''1171'':\n    - 1076\n    - 1077\n    ''1172'':\n    - 1077\n    - 1078\n    ''1173'':\n    - 1078\n    - 1079\n    ''1174'':\n    - 1079\n    - 1080\n    ''1175'':\n    - 1080\n    - 1081\n    ''1176'':\n    - 1081\n    - 1082\n    ''1177'':\n    - 1082\n    - 1085\n    ''1179'':\n    - 1084\n    - 4\n    ''118'':\n    - 109\n    - 110\n    ''1180'':\n    - 1085\n    - 1086\n    ''1181'':\n    - 1086\n    - 1087\n    ''1182'':\n    - 1087\n    - 1088\n    ''1183'':\n    - 1088\n    - 1089\n    ''1184'':\n    - 1089\n    - 1090\n    ''1185'':\n    - 1090\n    - 1091\n    ''1186'':\n    - 1091\n    - 1092\n    ''1187'':\n    - 1092\n    - 1093\n    ''1188'':\n    - 1093\n    - 1094\n    ''1189'':\n    - 1094\n    - 5\n    ''119'':\n    - 110\n    - 111\n    ''120'':\n    - 111\n    - 112\n    ''1202'':\n    - 305\n    - 308\n    ''121'':\n    - 112\n    - 113\n    ''122'':\n    - 113\n    - 115\n    ''123'':\n    - 114\n    - 126\n    ''1235'':\n    - 408\n    - 410\n    ''124'':\n    - 115\n    - 116\n    ''1247'':\n    - 813\n    - 814\n    ''1248'':\n    - 992\n    - 993\n    ''125'':\n    - 116\n    - 118\n    ''1253'':\n    - 9\n    - 1120\n    ''1254'':\n    - 1120\n    - 12\n    ''1257'':\n    - 9\n    - 1121\n    ''1258'':\n    - 1121\n    - 12\n    ''128'':\n    - 118\n    - 119\n    ''1289'':\n    - 1062\n    - 1064\n    ''129'':\n    - 119\n    - 120\n    ''13'':\n    - 12\n    - 13\n    ''130'':\n    - 120\n    - 121\n    ''1307'':\n    - 1012\n    - 1034\n    ''131'':\n    - 121\n    - 122\n    ''132'':\n    - 122\n    - 123\n    ''133'':\n    - 123\n    - 124\n    ''134'':\n    - 124\n    - 125\n    ''135'':\n    - 125\n    - 127\n    ''136'':\n    - 126\n    - 139\n    ''137'':\n    - 127\n    - 128\n    ''138'':\n    - 128\n    - 129\n    ''139'':\n    - 129\n    - 130\n    ''14'':\n    - 13\n    - 14\n    ''140'':\n    - 130\n    - 131\n    ''141'':\n    - 131\n    - 132\n    ''142'':\n    - 132\n    - 133\n    ''143'':\n    - 133\n    - 134\n    ''144'':\n    - 134\n    - 135\n    ''145'':\n    - 135\n    - 136\n    ''146'':\n    - 136\n    - 140\n    ''147'':\n    - 137\n    - 385\n    ''148'':\n    - 137\n    - 260\n    ''15'':\n    - 14\n    - 15\n    ''150'':\n    - 139\n    - 154\n    ''151'':\n    - 140\n    - 141\n    ''152'':\n    - 141\n    - 142\n    ''153'':\n    - 142\n    - 143\n    ''154'':\n    - 143\n    - 144\n    ''155'':\n    - 144\n    - 149\n    ''156'':\n    - 144\n    - 148\n    ''157'':\n    - 144\n    - 147\n    ''158'':\n    - 144\n    - 145\n    ''16'':\n    - 15\n    - 16\n    ''160'':\n    - 145\n    - 150\n    ''162'':\n    - 147\n    - 150\n    ''163'':\n    - 148\n    - 150\n    ''164'':\n    - 149\n    - 150\n    ''165'':\n    - 150\n    - 151\n    ''166'':\n    - 151\n    - 152\n    ''167'':\n    - 152\n    - 153\n    ''168'':\n    - 153\n    - 155\n    ''169'':\n    - 154\n    - 166\n    ''17'':\n    - 16\n    - 18\n    ''170'':\n    - 155\n    - 156\n    ''171'':\n    - 156\n    - 157\n    ''172'':\n    - 157\n    - 158\n    ''173'':\n    - 158\n    - 159\n    ''174'':\n    - 159\n    - 160\n    ''175'':\n    - 160\n    - 161\n    ''176'':\n    - 161\n    - 162\n    ''177'':\n    - 162\n    - 163\n    ''178'':\n    - 163\n    - 165\n    ''18'':\n    - 17\n    - 23\n    ''181'':\n    - 165\n    - 167\n    ''182'':\n    - 166\n    - 177\n    ''183'':\n    - 167\n    - 168\n    ''184'':\n    - 168\n    - 169\n    ''185'':\n    - 169\n    - 170\n    ''186'':\n    - 170\n    - 171\n    ''187'':\n    - 171\n    - 172\n    ''188'':\n    - 172\n    - 173\n    ''189'':\n    - 173\n    - 174\n    ''19'':\n    - 18\n    - 19\n    ''190'':\n    - 174\n    - 175\n    ''191'':\n    - 175\n    - 176\n    ''192'':\n    - 176\n    - 178\n    ''193'':\n    - 177\n    - 189\n    ''194'':\n    - 178\n    - 179\n    ''195'':\n    - 179\n    - 180\n    ''196'':\n    - 180\n    - 181\n    ''197'':\n    - 181\n    - 182\n    ''198'':\n    - 182\n    - 183\n    ''199'':\n    - 183\n    - 184\n    ''20'':\n    - 19\n    - 20\n    ''200'':\n    - 184\n    - 185\n    ''201'':\n    - 185\n    - 186\n    ''202'':\n    - 186\n    - 188\n    ''203'':\n    - 186\n    - 187\n    ''204'':\n    - 187\n    - 190\n    ''205'':\n    - 188\n    - 190\n    ''206'':\n    - 189\n    - 202\n    ''207'':\n    - 190\n    - 191\n    ''208'':\n    - 191\n    - 192\n    ''209'':\n    - 192\n    - 193\n    ''21'':\n    - 20\n    - 22\n    ''210'':\n    - 193\n    - 195\n    ''213'':\n    - 195\n    - 197\n    ''214'':\n    - 195\n    - 196\n    ''215'':\n    - 196\n    - 198\n    ''216'':\n    - 197\n    - 198\n    ''217'':\n    - 198\n    - 199\n    ''218'':\n    - 199\n    - 200\n    ''219'':\n    - 200\n    - 201\n    ''22'':\n    - 20\n    - 21\n    ''220'':\n    - 201\n    - 203\n    ''221'':\n    - 202\n    - 214\n    ''222'':\n    - 203\n    - 204\n    ''223'':\n    - 203\n    - 205\n    ''224'':\n    - 204\n    - 207\n    ''225'':\n    - 205\n    - 206\n    ''226'':\n    - 206\n    - 207\n    ''227'':\n    - 207\n    - 208\n    ''228'':\n    - 208\n    - 209\n    ''229'':\n    - 209\n    - 210\n    ''23'':\n    - 21\n    - 1\n    ''230'':\n    - 210\n    - 211\n    ''231'':\n    - 211\n    - 212\n    ''232'':\n    - 212\n    - 213\n    ''233'':\n    - 213\n    - 215\n    ''234'':\n    - 214\n    - 225\n    ''235'':\n    - 215\n    - 216\n    ''236'':\n    - 216\n    - 217\n    ''237'':\n    - 217\n    - 218\n    ''238'':\n    - 218\n    - 219\n    ''239'':\n    - 219\n    - 220\n    ''24'':\n    - 22\n    - 1\n    ''240'':\n    - 220\n    - 221\n    ''241'':\n    - 221\n    - 222\n    ''242'':\n    - 222\n    - 223\n    ''243'':\n    - 223\n    - 224\n    ''244'':\n    - 224\n    - 226\n    ''245'':\n    - 225\n    - 236\n    ''246'':\n    - 225\n    - 247\n    ''247'':\n    - 226\n    - 227\n    ''248'':\n    - 227\n    - 228\n    ''249'':\n    - 228\n    - 229\n    ''25'':\n    - 23\n    - 24\n    ''250'':\n    - 229\n    - 230\n    ''251'':\n    - 230\n    - 231\n    ''252'':\n    - 231\n    - 232\n    ''253'':\n    - 232\n    - 233\n    ''254'':\n    - 233\n    - 234\n    ''255'':\n    - 234\n    - 235\n    ''256'':\n    - 235\n    - 237\n    ''257'':\n    - 236\n    - 247\n    ''258'':\n    - 237\n    - 238\n    ''259'':\n    - 238\n    - 239\n    ''26'':\n    - 24\n    - 25\n    ''260'':\n    - 239\n    - 240\n    ''261'':\n    - 240\n    - 241\n    ''262'':\n    - 241\n    - 242\n    ''263'':\n    - 242\n    - 243\n    ''264'':\n    - 243\n    - 244\n    ''265'':\n    - 244\n    - 245\n    ''266'':\n    - 245\n    - 246\n    ''267'':\n    - 246\n    - 248\n    ''268'':\n    - 247\n    - 261\n    ''269'':\n    - 248\n    - 249\n    ''27'':\n    - 25\n    - 26\n    ''270'':\n    - 249\n    - 250\n    ''271'':\n    - 250\n    - 252\n    ''274'':\n    - 252\n    - 253\n    ''276'':\n    - 253\n    - 255\n    ''278'':\n    - 255\n    - 256\n    ''279'':\n    - 256\n    - 257\n    ''28'':\n    - 26\n    - 27\n    ''280'':\n    - 257\n    - 258\n    ''281'':\n    - 258\n    - 259\n    ''282'':\n    - 259\n    - 262\n    ''283'':\n    - 260\n    - 385\n    ''284'':\n    - 261\n    - 273\n    ''285'':\n    - 262\n    - 263\n    ''286'':\n    - 263\n    - 264\n    ''287'':\n    - 264\n    - 265\n    ''288'':\n    - 265\n    - 266\n    ''289'':\n    - 266\n    - 267\n    ''29'':\n    - 27\n    - 28\n    ''290'':\n    - 267\n    - 268\n    ''291'':\n    - 268\n    - 269\n    ''292'':\n    - 269\n    - 270\n    ''294'':\n    - 270\n    - 272\n    ''296'':\n    - 272\n    - 275\n    ''298'':\n    - 273\n    - 288\n    ''3'':\n    - 3\n    - 31\n    ''30'':\n    - 28\n    - 29\n    ''300'':\n    - 275\n    - 276\n    ''301'':\n    - 276\n    - 277\n    ''302'':\n    - 277\n    - 278\n    ''303'':\n    - 278\n    - 281\n    ''304'':\n    - 278\n    - 279\n    ''305'':\n    - 279\n    - 280\n    ''306'':\n    - 280\n    - 281\n    ''308'':\n    - 281\n    - 283\n    ''31'':\n    - 29\n    - 30\n    ''310'':\n    - 283\n    - 284\n    ''311'':\n    - 283\n    - 285\n    ''312'':\n    - 284\n    - 287\n    ''313'':\n    - 285\n    - 287\n    ''316'':\n    - 287\n    - 289\n    ''317'':\n    - 288\n    - 301\n    ''318'':\n    - 289\n    - 290\n    ''319'':\n    - 290\n    - 291\n    ''320'':\n    - 291\n    - 292\n    ''321'':\n    - 292\n    - 294\n    ''324'':\n    - 294\n    - 295\n    ''325'':\n    - 295\n    - 296\n    ''326'':\n    - 296\n    - 297\n    ''327'':\n    - 297\n    - 299\n    ''33'':\n    - 30\n    - 33\n    ''330'':\n    - 299\n    - 300\n    ''331'':\n    - 300\n    - 302\n    ''332'':\n    - 301\n    - 313\n    ''333'':\n    - 302\n    - 303\n    ''334'':\n    - 303\n    - 304\n    ''335'':\n    - 304\n    - 305\n    ''337'':\n    - 305\n    - 306\n    ''338'':\n    - 306\n    - 308\n    ''34'':\n    - 31\n    - 43\n    ''341'':\n    - 308\n    - 309\n    ''342'':\n    - 309\n    - 310\n    ''343'':\n    - 310\n    - 311\n    ''344'':\n    - 311\n    - 312\n    ''345'':\n    - 312\n    - 314\n    ''346'':\n    - 313\n    - 324\n    ''347'':\n    - 314\n    - 315\n    ''348'':\n    - 315\n    - 316\n    ''349'':\n    - 316\n    - 317\n    ''350'':\n    - 317\n    - 318\n    ''351'':\n    - 318\n    - 319\n    ''352'':\n    - 319\n    - 320\n    ''353'':\n    - 320\n    - 321\n    ''354'':\n    - 321\n    - 322\n    ''355'':\n    - 322\n    - 323\n    ''357'':\n    - 323\n    - 326\n    ''358'':\n    - 324\n    - 336\n    ''36'':\n    - 33\n    - 34\n    ''360'':\n    - 326\n    - 327\n    ''361'':\n    - 327\n    - 328\n    ''362'':\n    - 328\n    - 329\n    ''363'':\n    - 329\n    - 330\n    ''364'':\n    - 330\n    - 331\n    ''365'':\n    - 331\n    - 332\n    ''366'':\n    - 332\n    - 333\n    ''367'':\n    - 333\n    - 334\n    ''368'':\n    - 334\n    - 335\n    ''369'':\n    - 335\n    - 337\n    ''37'':\n    - 34\n    - 35\n    ''370'':\n    - 336\n    - 348\n    ''372'':\n    - 337\n    - 339\n    ''374'':\n    - 339\n    - 340\n    ''375'':\n    - 340\n    - 341\n    ''376'':\n    - 341\n    - 342\n    ''377'':\n    - 342\n    - 343\n    ''378'':\n    - 343\n    - 344\n    ''379'':\n    - 344\n    - 345\n    ''38'':\n    - 35\n    - 36\n    ''380'':\n    - 344\n    - 346\n    ''381'':\n    - 345\n    - 346\n    ''382'':\n    - 346\n    - 347\n    ''383'':\n    - 347\n    - 349\n    ''384'':\n    - 347\n    - 350\n    ''385'':\n    - 348\n    - 360\n    ''386'':\n    - 349\n    - 351\n    ''387'':\n    - 350\n    - 351\n    ''388'':\n    - 351\n    - 352\n    ''389'':\n    - 352\n    - 353\n    ''39'':\n    - 36\n    - 37\n    ''390'':\n    - 353\n    - 354\n    ''391'':\n    - 354\n    - 355\n    ''392'':\n    - 355\n    - 356\n    ''393'':\n    - 356\n    - 357\n    ''394'':\n    - 357\n    - 358\n    ''395'':\n    - 358\n    - 359\n    ''396'':\n    - 359\n    - 361\n    ''397'':\n    - 360\n    - 374\n    ''399'':\n    - 361\n    - 362\n    ''4'':\n    - 4\n    - 17\n    ''40'':\n    - 37\n    - 38\n    ''400'':\n    - 362\n    - 363\n    ''401'':\n    - 362\n    - 364\n    ''402'':\n    - 363\n    - 365\n    ''403'':\n    - 364\n    - 365\n    ''404'':\n    - 365\n    - 366\n    ''406'':\n    - 366\n    - 368\n    ''408'':\n    - 368\n    - 369\n    ''409'':\n    - 369\n    - 370\n    ''41'':\n    - 38\n    - 39\n    ''410'':\n    - 370\n    - 371\n    ''411'':\n    - 371\n    - 372\n    ''412'':\n    - 372\n    - 375\n    ''414'':\n    - 374\n    - 386\n    ''415'':\n    - 375\n    - 376\n    ''416'':\n    - 376\n    - 377\n    ''417'':\n    - 377\n    - 378\n    ''418'':\n    - 378\n    - 379\n    ''419'':\n    - 379\n    - 380\n    ''42'':\n    - 39\n    - 40\n    ''420'':\n    - 380\n    - 381\n    ''421'':\n    - 381\n    - 382\n    ''422'':\n    - 382\n    - 383\n    ''423'':\n    - 383\n    - 384\n    ''424'':\n    - 384\n    - 387\n    ''425'':\n    - 385\n    - 505\n    ''426'':\n    - 386\n    - 398\n    ''427'':\n    - 387\n    - 388\n    ''428'':\n    - 388\n    - 389\n    ''429'':\n    - 389\n    - 390\n    ''43'':\n    - 39\n    - 41\n    ''430'':\n    - 390\n    - 391\n    ''431'':\n    - 391\n    - 392\n    ''432'':\n    - 392\n    - 393\n    ''433'':\n    - 392\n    - 394\n    ''434'':\n    - 393\n    - 395\n    ''435'':\n    - 394\n    - 395\n    ''436'':\n    - 395\n    - 396\n    ''437'':\n    - 396\n    - 397\n    ''438'':\n    - 397\n    - 399\n    ''439'':\n    - 398\n    - 412\n    ''44'':\n    - 40\n    - 41\n    ''440'':\n    - 399\n    - 400\n    ''441'':\n    - 400\n    - 401\n    ''442'':\n    - 401\n    - 403\n    ''445'':\n    - 403\n    - 404\n    ''446'':\n    - 404\n    - 405\n    ''447'':\n    - 405\n    - 406\n    ''449'':\n    - 406\n    - 408\n    ''45'':\n    - 41\n    - 42\n    ''454'':\n    - 410\n    - 411\n    ''455'':\n    - 411\n    - 413\n    ''456'':\n    - 412\n    - 423\n    ''457'':\n    - 413\n    - 414\n    ''458'':\n    - 414\n    - 415\n    ''459'':\n    - 415\n    - 416\n    ''46'':\n    - 42\n    - 44\n    ''460'':\n    - 416\n    - 417\n    ''461'':\n    - 417\n    - 418\n    ''462'':\n    - 418\n    - 419\n    ''463'':\n    - 419\n    - 420\n    ''464'':\n    - 420\n    - 421\n    ''465'':\n    - 421\n    - 422\n    ''466'':\n    - 422\n    - 424\n    ''467'':\n    - 423\n    - 434\n    ''468'':\n    - 424\n    - 425\n    ''469'':\n    - 425\n    - 426\n    ''47'':\n    - 43\n    - 54\n    ''470'':\n    - 426\n    - 427\n    ''471'':\n    - 427\n    - 428\n    ''472'':\n    - 428\n    - 429\n    ''473'':\n    - 429\n    - 430\n    ''474'':\n    - 430\n    - 431\n    ''475'':\n    - 431\n    - 432\n    ''476'':\n    - 432\n    - 433\n    ''477'':\n    - 433\n    - 435\n    ''478'':\n    - 434\n    - 445\n    ''479'':\n    - 435\n    - 436\n    ''48'':\n    - 44\n    - 45\n    ''480'':\n    - 436\n    - 437\n    ''481'':\n    - 437\n    - 438\n    ''482'':\n    - 438\n    - 439\n    ''483'':\n    - 439\n    - 440\n    ''484'':\n    - 440\n    - 441\n    ''485'':\n    - 441\n    - 442\n    ''486'':\n    - 442\n    - 443\n    ''487'':\n    - 443\n    - 444\n    ''488'':\n    - 444\n    - 446\n    ''489'':\n    - 445\n    - 457\n    ''49'':\n    - 45\n    - 46\n    ''490'':\n    - 446\n    - 447\n    ''491'':\n    - 447\n    - 448\n    ''492'':\n    - 448\n    - 449\n    ''493'':\n    - 449\n    - 450\n    ''494'':\n    - 450\n    - 451\n    ''495'':\n    - 451\n    - 452\n    ''496'':\n    - 452\n    - 453\n    ''497'':\n    - 453\n    - 454\n    ''498'':\n    - 454\n    - 455\n    ''499'':\n    - 454\n    - 456\n    ''5'':\n    - 5\n    - 6\n    ''50'':\n    - 46\n    - 47\n    ''500'':\n    - 455\n    - 458\n    ''501'':\n    - 456\n    - 458\n    ''502'':\n    - 457\n    - 468\n    ''503'':\n    - 458\n    - 459\n    ''504'':\n    - 459\n    - 460\n    ''505'':\n    - 460\n    - 461\n    ''506'':\n    - 461\n    - 462\n    ''507'':\n    - 462\n    - 463\n    ''508'':\n    - 463\n    - 464\n    ''509'':\n    - 464\n    - 465\n    ''51'':\n    - 47\n    - 48\n    ''510'':\n    - 465\n    - 466\n    ''511'':\n    - 466\n    - 467\n    ''512'':\n    - 467\n    - 469\n    ''513'':\n    - 468\n    - 479\n    ''514'':\n    - 469\n    - 470\n    ''515'':\n    - 470\n    - 471\n    ''516'':\n    - 471\n    - 472\n    ''517'':\n    - 472\n    - 473\n    ''518'':\n    - 473\n    - 474\n    ''519'':\n    - 474\n    - 475\n    ''52'':\n    - 48\n    - 49\n    ''520'':\n    - 475\n    - 476\n    ''521'':\n    - 476\n    - 477\n    ''522'':\n    - 477\n    - 478\n    ''523'':\n    - 478\n    - 480\n    ''524'':\n    - 479\n    - 490\n    ''525'':\n    - 480\n    - 481\n    ''526'':\n    - 481\n    - 482\n    ''527'':\n    - 482\n    - 483\n    ''528'':\n    - 483\n    - 484\n    ''529'':\n    - 484\n    - 485\n    ''53'':\n    - 49\n    - 50\n    ''530'':\n    - 485\n    - 486\n    ''531'':\n    - 486\n    - 487\n    ''532'':\n    - 487\n    - 488\n    ''533'':\n    - 488\n    - 489\n    ''534'':\n    - 489\n    - 491\n    ''535'':\n    - 490\n    - 506\n    ''536'':\n    - 491\n    - 492\n    ''537'':\n    - 492\n    - 493\n    ''538'':\n    - 493\n    - 497\n    ''539'':\n    - 493\n    - 496\n    ''54'':\n    - 50\n    - 51\n    ''544'':\n    - 496\n    - 498\n    ''545'':\n    - 497\n    - 498\n    ''546'':\n    - 498\n    - 499\n    ''547'':\n    - 499\n    - 500\n    ''548'':\n    - 500\n    - 501\n    ''549'':\n    - 500\n    - 502\n    ''55'':\n    - 51\n    - 52\n    ''550'':\n    - 501\n    - 503\n    ''551'':\n    - 502\n    - 503\n    ''552'':\n    - 503\n    - 504\n    ''553'':\n    - 503\n    - 508\n    ''555'':\n    - 504\n    - 508\n    ''556'':\n    - 505\n    - 622\n    ''557'':\n    - 506\n    - 518\n    ''559'':\n    - 508\n    - 509\n    ''56'':\n    - 52\n    - 53\n    ''560'':\n    - 509\n    - 510\n    ''561'':\n    - 510\n    - 511\n    ''562'':\n    - 511\n    - 512\n    ''563'':\n    - 512\n    - 513\n    ''564'':\n    - 513\n    - 514\n    ''565'':\n    - 514\n    - 515\n    ''566'':\n    - 515\n    - 516\n    ''567'':\n    - 516\n    - 517\n    ''568'':\n    - 517\n    - 519\n    ''569'':\n    - 518\n    - 530\n    ''57'':\n    - 53\n    - 55\n    ''570'':\n    - 519\n    - 520\n    ''571'':\n    - 520\n    - 521\n    ''572'':\n    - 521\n    - 522\n    ''573'':\n    - 522\n    - 523\n    ''574'':\n    - 523\n    - 525\n    ''577'':\n    - 525\n    - 526\n    ''578'':\n    - 526\n    - 527\n    ''579'':\n    - 527\n    - 528\n    ''58'':\n    - 54\n    - 66\n    ''580'':\n    - 528\n    - 529\n    ''581'':\n    - 529\n    - 531\n    ''582'':\n    - 530\n    - 541\n    ''583'':\n    - 531\n    - 532\n    ''584'':\n    - 532\n    - 533\n    ''585'':\n    - 533\n    - 534\n    ''586'':\n    - 534\n    - 535\n    ''587'':\n    - 535\n    - 536\n    ''588'':\n    - 536\n    - 537\n    ''589'':\n    - 537\n    - 538\n    ''59'':\n    - 55\n    - 56\n    ''590'':\n    - 538\n    - 539\n    ''591'':\n    - 539\n    - 540\n    ''592'':\n    - 540\n    - 542\n    ''593'':\n    - 541\n    - 552\n    ''594'':\n    - 542\n    - 543\n    ''595'':\n    - 543\n    - 544\n    ''596'':\n    - 544\n    - 545\n    ''597'':\n    - 545\n    - 546\n    ''598'':\n    - 546\n    - 547\n    ''599'':\n    - 547\n    - 548\n    ''6'':\n    - 6\n    - 7\n    ''60'':\n    - 56\n    - 57\n    ''600'':\n    - 548\n    - 549\n    ''601'':\n    - 549\n    - 550\n    ''602'':\n    - 550\n    - 551\n    ''603'':\n    - 551\n    - 553\n    ''604'':\n    - 552\n    - 563\n    ''605'':\n    - 553\n    - 554\n    ''606'':\n    - 554\n    - 555\n    ''607'':\n    - 555\n    - 556\n    ''608'':\n    - 556\n    - 557\n    ''609'':\n    - 557\n    - 558\n    ''61'':\n    - 57\n    - 58\n    ''610'':\n    - 558\n    - 559\n    ''611'':\n    - 559\n    - 560\n    ''612'':\n    - 560\n    - 561\n    ''613'':\n    - 561\n    - 562\n    ''614'':\n    - 562\n    - 564\n    ''615'':\n    - 563\n    - 576\n    ''616'':\n    - 564\n    - 565\n    ''617'':\n    - 565\n    - 566\n    ''618'':\n    - 566\n    - 567\n    ''619'':\n    - 567\n    - 568\n    ''62'':\n    - 58\n    - 59\n    ''620'':\n    - 568\n    - 569\n    ''621'':\n    - 569\n    - 570\n    ''622'':\n    - 569\n    - 571\n    ''623'':\n    - 570\n    - 572\n    ''624'':\n    - 571\n    - 572\n    ''626'':\n    - 572\n    - 574\n    ''628'':\n    - 574\n    - 575\n    ''629'':\n    - 575\n    - 577\n    ''63'':\n    - 59\n    - 60\n    ''630'':\n    - 576\n    - 587\n    ''631'':\n    - 577\n    - 578\n    ''632'':\n    - 578\n    - 579\n    ''633'':\n    - 579\n    - 580\n    ''634'':\n    - 580\n    - 581\n    ''635'':\n    - 581\n    - 582\n    ''636'':\n    - 582\n    - 583\n    ''637'':\n    - 583\n    - 584\n    ''638'':\n    - 584\n    - 585\n    ''639'':\n    - 585\n    - 586\n    ''640'':\n    - 586\n    - 588\n    ''641'':\n    - 587\n    - 598\n    ''642'':\n    - 588\n    - 589\n    ''643'':\n    - 589\n    - 590\n    ''644'':\n    - 590\n    - 591\n    ''645'':\n    - 591\n    - 592\n    ''646'':\n    - 592\n    - 593\n    ''647'':\n    - 593\n    - 594\n    ''648'':\n    - 594\n    - 595\n    ''649'':\n    - 595\n    - 596\n    ''65'':\n    - 60\n    - 62\n    ''650'':\n    - 596\n    - 597\n    ''651'':\n    - 597\n    - 599\n    ''652'':\n    - 598\n    - 610\n    ''653'':\n    - 599\n    - 600\n    ''654'':\n    - 600\n    - 601\n    ''655'':\n    - 601\n    - 602\n    ''656'':\n    - 602\n    - 603\n    ''657'':\n    - 603\n    - 604\n    ''658'':\n    - 604\n    - 606\n    ''659'':\n    - 604\n    - 605\n    ''660'':\n    - 605\n    - 1\n    ''661'':\n    - 606\n    - 607\n    ''662'':\n    - 607\n    - 608\n    ''663'':\n    - 608\n    - 609\n    ''664'':\n    - 609\n    - 611\n    ''665'':\n    - 610\n    - 623\n    ''666'':\n    - 611\n    - 612\n    ''667'':\n    - 612\n    - 613\n    ''668'':\n    - 613\n    - 614\n    ''669'':\n    - 614\n    - 615\n    ''67'':\n    - 62\n    - 63\n    ''670'':\n    - 615\n    - 616\n    ''671'':\n    - 616\n    - 617\n    ''672'':\n    - 617\n    - 619\n    ''675'':\n    - 619\n    - 620\n    ''676'':\n    - 620\n    - 621\n    ''677'':\n    - 621\n    - 624\n    ''678'':\n    - 622\n    - 739\n    ''679'':\n    - 623\n    - 634\n    ''68'':\n    - 63\n    - 64\n    ''680'':\n    - 624\n    - 625\n    ''681'':\n    - 625\n    - 626\n    ''682'':\n    - 626\n    - 627\n    ''683'':\n    - 627\n    - 628\n    ''684'':\n    - 628\n    - 629\n    ''685'':\n    - 629\n    - 630\n    ''686'':\n    - 630\n    - 631\n    ''687'':\n    - 631\n    - 632\n    ''688'':\n    - 632\n    - 633\n    ''689'':\n    - 633\n    - 635\n    ''69'':\n    - 64\n    - 65\n    ''690'':\n    - 634\n    - 647\n    ''691'':\n    - 634\n    - 672\n    ''692'':\n    - 635\n    - 636\n    ''693'':\n    - 636\n    - 637\n    ''694'':\n    - 637\n    - 638\n    ''695'':\n    - 638\n    - 639\n    ''696'':\n    - 639\n    - 640\n    ''697'':\n    - 639\n    - 641\n    ''698'':\n    - 640\n    - 642\n    ''699'':\n    - 641\n    - 642\n    ''70'':\n    - 65\n    - 67\n    ''701'':\n    - 642\n    - 644\n    ''703'':\n    - 644\n    - 645\n    ''704'':\n    - 645\n    - 646\n    ''705'':\n    - 646\n    - 648\n    ''706'':\n    - 647\n    - 658\n    ''707'':\n    - 648\n    - 649\n    ''708'':\n    - 649\n    - 650\n    ''709'':\n    - 650\n    - 651\n    ''71'':\n    - 66\n    - 78\n    ''710'':\n    - 651\n    - 652\n    ''711'':\n    - 652\n    - 653\n    ''712'':\n    - 653\n    - 654\n    ''713'':\n    - 654\n    - 655\n    ''714'':\n    - 655\n    - 656\n    ''715'':\n    - 656\n    - 657\n    ''716'':\n    - 657\n    - 659\n    ''717'':\n    - 658\n    - 672\n    ''718'':\n    - 659\n    - 660\n    ''719'':\n    - 660\n    - 662\n    ''72'':\n    - 67\n    - 68\n    ''720'':\n    - 660\n    - 661\n    ''721'':\n    - 661\n    - 663\n    ''722'':\n    - 662\n    - 663\n    ''723'':\n    - 663\n    - 664\n    ''724'':\n    - 663\n    - 665\n    ''725'':\n    - 664\n    - 666\n    ''726'':\n    - 665\n    - 666\n    ''728'':\n    - 666\n    - 668\n    ''730'':\n    - 668\n    - 669\n    ''731'':\n    - 669\n    - 670\n    ''732'':\n    - 670\n    - 671\n    ''733'':\n    - 671\n    - 673\n    ''734'':\n    - 672\n    - 683\n    ''735'':\n    - 673\n    - 674\n    ''736'':\n    - 674\n    - 675\n    ''737'':\n    - 675\n    - 676\n    ''738'':\n    - 676\n    - 677\n    ''739'':\n    - 677\n    - 678\n    ''74'':\n    - 68\n    - 70\n    ''740'':\n    - 678\n    - 679\n    ''741'':\n    - 679\n    - 680\n    ''742'':\n    - 680\n    - 681\n    ''743'':\n    - 681\n    - 682\n    ''744'':\n    - 682\n    - 684\n    ''745'':\n    - 683\n    - 694\n    ''746'':\n    - 684\n    - 685\n    ''747'':\n    - 685\n    - 686\n    ''748'':\n    - 686\n    - 687\n    ''749'':\n    - 687\n    - 688\n    ''750'':\n    - 688\n    - 689\n    ''751'':\n    - 689\n    - 690\n    ''752'':\n    - 690\n    - 691\n    ''753'':\n    - 691\n    - 692\n    ''754'':\n    - 692\n    - 693\n    ''755'':\n    - 693\n    - 695\n    ''756'':\n    - 694\n    - 705\n    ''757'':\n    - 695\n    - 696\n    ''758'':\n    - 696\n    - 697\n    ''759'':\n    - 697\n    - 698\n    ''76'':\n    - 70\n    - 71\n    ''760'':\n    - 698\n    - 699\n    ''761'':\n    - 699\n    - 700\n    ''762'':\n    - 700\n    - 701\n    ''763'':\n    - 701\n    - 702\n    ''764'':\n    - 702\n    - 703\n    ''765'':\n    - 703\n    - 704\n    ''766'':\n    - 704\n    - 706\n    ''767'':\n    - 705\n    - 716\n    ''768'':\n    - 706\n    - 707\n    ''769'':\n    - 707\n    - 708\n    ''77'':\n    - 71\n    - 72\n    ''770'':\n    - 708\n    - 709\n    ''771'':\n    - 709\n    - 710\n    ''772'':\n    - 710\n    - 711\n    ''773'':\n    - 711\n    - 712\n    ''774'':\n    - 712\n    - 713\n    ''775'':\n    - 713\n    - 714\n    ''776'':\n    - 714\n    - 715\n    ''777'':\n    - 715\n    - 717\n    ''778'':\n    - 716\n    - 728\n    ''779'':\n    - 717\n    - 718\n    ''78'':\n    - 72\n    - 73\n    ''780'':\n    - 718\n    - 719\n    ''781'':\n    - 719\n    - 720\n    ''782'':\n    - 720\n    - 721\n    ''784'':\n    - 721\n    - 723\n    ''786'':\n    - 723\n    - 724\n    ''787'':\n    - 724\n    - 725\n    ''788'':\n    - 725\n    - 726\n    ''789'':\n    - 726\n    - 727\n    ''79'':\n    - 73\n    - 74\n    ''790'':\n    - 727\n    - 729\n    ''791'':\n    - 728\n    - 740\n    ''792'':\n    - 729\n    - 730\n    ''793'':\n    - 730\n    - 731\n    ''794'':\n    - 731\n    - 732\n    ''795'':\n    - 732\n    - 733\n    ''796'':\n    - 733\n    - 734\n    ''797'':\n    - 734\n    - 735\n    ''798'':\n    - 735\n    - 736\n    ''799'':\n    - 736\n    - 737\n    ''8'':\n    - 7\n    - 9\n    ''80'':\n    - 74\n    - 75\n    ''800'':\n    - 737\n    - 738\n    ''801'':\n    - 738\n    - 741\n    ''802'':\n    - 739\n    - 857\n    ''803'':\n    - 740\n    - 751\n    ''804'':\n    - 741\n    - 742\n    ''805'':\n    - 742\n    - 743\n    ''806'':\n    - 743\n    - 744\n    ''807'':\n    - 744\n    - 745\n    ''808'':\n    - 745\n    - 746\n    ''809'':\n    - 746\n    - 747\n    ''81'':\n    - 75\n    - 76\n    ''810'':\n    - 747\n    - 748\n    ''811'':\n    - 748\n    - 749\n    ''812'':\n    - 749\n    - 750\n    ''813'':\n    - 750\n    - 752\n    ''814'':\n    - 751\n    - 762\n    ''815'':\n    - 752\n    - 753\n    ''816'':\n    - 753\n    - 754\n    ''817'':\n    - 754\n    - 755\n    ''818'':\n    - 755\n    - 756\n    ''819'':\n    - 756\n    - 757\n    ''82'':\n    - 76\n    - 77\n    ''820'':\n    - 757\n    - 758\n    ''821'':\n    - 758\n    - 759\n    ''822'':\n    - 759\n    - 760\n    ''823'':\n    - 760\n    - 761\n    ''824'':\n    - 761\n    - 763\n    ''826'':\n    - 762\n    - 774\n    ''827'':\n    - 763\n    - 764\n    ''828'':\n    - 764\n    - 765\n    ''829'':\n    - 765\n    - 766\n    ''83'':\n    - 77\n    - 79\n    ''830'':\n    - 766\n    - 767\n    ''831'':\n    - 767\n    - 768\n    ''832'':\n    - 768\n    - 769\n    ''833'':\n    - 769\n    - 770\n    ''834'':\n    - 770\n    - 771\n    ''835'':\n    - 771\n    - 772\n    ''836'':\n    - 772\n    - 775\n    ''838'':\n    - 774\n    - 786\n    ''839'':\n    - 775\n    - 776\n    ''84'':\n    - 78\n    - 91\n    ''840'':\n    - 776\n    - 777\n    ''841'':\n    - 777\n    - 778\n    ''842'':\n    - 778\n    - 779\n    ''843'':\n    - 779\n    - 780\n    ''844'':\n    - 780\n    - 781\n    ''845'':\n    - 781\n    - 783\n    ''848'':\n    - 783\n    - 784\n    ''849'':\n    - 784\n    - 785\n    ''85'':\n    - 79\n    - 80\n    ''850'':\n    - 785\n    - 787\n    ''851'':\n    - 786\n    - 797\n    ''852'':\n    - 787\n    - 788\n    ''853'':\n    - 788\n    - 795\n    ''854'':\n    - 788\n    - 792\n    ''855'':\n    - 788\n    - 789\n    ''856'':\n    - 789\n    - 790\n    ''857'':\n    - 790\n    - 791\n    ''858'':\n    - 791\n    - 792\n    ''859'':\n    - 792\n    - 793\n    ''86'':\n    - 80\n    - 81\n    ''860'':\n    - 793\n    - 794\n    ''861'':\n    - 794\n    - 795\n    ''862'':\n    - 795\n    - 796\n    ''863'':\n    - 796\n    - 798\n    ''865'':\n    - 797\n    - 809\n    ''866'':\n    - 798\n    - 799\n    ''867'':\n    - 799\n    - 800\n    ''868'':\n    - 800\n    - 801\n    ''869'':\n    - 801\n    - 802\n    ''87'':\n    - 81\n    - 82\n    ''870'':\n    - 802\n    - 803\n    ''871'':\n    - 803\n    - 804\n    ''872'':\n    - 804\n    - 805\n    ''873'':\n    - 804\n    - 806\n    ''874'':\n    - 805\n    - 806\n    ''875'':\n    - 806\n    - 807\n    ''876'':\n    - 807\n    - 810\n    ''878'':\n    - 809\n    - 821\n    ''879'':\n    - 810\n    - 811\n    ''88'':\n    - 82\n    - 83\n    ''880'':\n    - 811\n    - 813\n    ''883'':\n    - 813\n    - 815\n    ''884'':\n    - 814\n    - 815\n    ''885'':\n    - 815\n    - 816\n    ''886'':\n    - 816\n    - 817\n    ''887'':\n    - 817\n    - 818\n    ''888'':\n    - 818\n    - 819\n    ''889'':\n    - 819\n    - 820\n    ''890'':\n    - 820\n    - 822\n    ''891'':\n    - 821\n    - 834\n    ''892'':\n    - 822\n    - 823\n    ''893'':\n    - 823\n    - 824\n    ''894'':\n    - 824\n    - 825\n    ''895'':\n    - 825\n    - 826\n    ''896'':\n    - 826\n    - 827\n    ''897'':\n    - 827\n    - 828\n    ''898'':\n    - 828\n    - 831\n    ''899'':\n    - 828\n    - 829\n    ''90'':\n    - 83\n    - 86\n    ''900'':\n    - 828\n    - 830\n    ''901'':\n    - 829\n    - 832\n    ''902'':\n    - 830\n    - 832\n    ''903'':\n    - 831\n    - 832\n    ''904'':\n    - 832\n    - 833\n    ''905'':\n    - 833\n    - 835\n    ''906'':\n    - 833\n    - 836\n    ''907'':\n    - 834\n    - 846\n    ''908'':\n    - 835\n    - 837\n    ''909'':\n    - 836\n    - 837\n    ''910'':\n    - 837\n    - 838\n    ''911'':\n    - 838\n    - 839\n    ''912'':\n    - 839\n    - 840\n    ''913'':\n    - 840\n    - 841\n    ''914'':\n    - 841\n    - 842\n    ''915'':\n    - 842\n    - 843\n    ''916'':\n    - 843\n    - 844\n    ''917'':\n    - 844\n    - 845\n    ''918'':\n    - 845\n    - 847\n    ''919'':\n    - 846\n    - 858\n    ''920'':\n    - 847\n    - 848\n    ''921'':\n    - 848\n    - 849\n    ''922'':\n    - 849\n    - 850\n    ''923'':\n    - 850\n    - 851\n    ''924'':\n    - 851\n    - 852\n    ''925'':\n    - 852\n    - 853\n    ''926'':\n    - 853\n    - 854\n    ''927'':\n    - 854\n    - 855\n    ''928'':\n    - 855\n    - 856\n    ''929'':\n    - 856\n    - 859\n    ''930'':\n    - 857\n    - 971\n    ''931'':\n    - 858\n    - 870\n    ''932'':\n    - 859\n    - 860\n    ''933'':\n    - 860\n    - 861\n    ''934'':\n    - 860\n    - 863\n    ''936'':\n    - 861\n    - 863\n    ''938'':\n    - 863\n    - 864\n    ''939'':\n    - 864\n    - 865\n    ''94'':\n    - 86\n    - 87\n    ''940'':\n    - 865\n    - 866\n    ''941'':\n    - 866\n    - 867\n    ''942'':\n    - 867\n    - 868\n    ''943'':\n    - 868\n    - 869\n    ''944'':\n    - 869\n    - 871\n    ''945'':\n    - 870\n    - 882\n    ''946'':\n    - 871\n    - 872\n    ''947'':\n    - 872\n    - 873\n    ''948'':\n    - 873\n    - 874\n    ''949'':\n    - 874\n    - 875\n    ''95'':\n    - 87\n    - 88\n    ''950'':\n    - 875\n    - 877\n    ''953'':\n    - 877\n    - 878\n    ''954'':\n    - 878\n    - 879\n    ''955'':\n    - 879\n    - 880\n    ''956'':\n    - 880\n    - 881\n    ''957'':\n    - 881\n    - 883\n    ''958'':\n    - 882\n    - 893\n    ''959'':\n    - 883\n    - 884\n    ''96'':\n    - 88\n    - 89\n    ''960'':\n    - 884\n    - 885\n    ''961'':\n    - 885\n    - 886\n    ''962'':\n    - 886\n    - 887\n    ''963'':\n    - 887\n    - 888\n    ''964'':\n    - 888\n    - 889\n    ''965'':\n    - 889\n    - 890\n    ''966'':\n    - 890\n    - 891\n    ''967'':\n    - 891\n    - 892\n    ''968'':\n    - 892\n    - 894\n    ''969'':\n    - 893\n    - 905\n    ''97'':\n    - 89\n    - 90\n    ''970'':\n    - 894\n    - 895\n    ''971'':\n    - 895\n    - 896\n    ''972'':\n    - 896\n    - 897\n    ''973'':\n    - 897\n    - 898\n    ''974'':\n    - 898\n    - 899\n    ''975'':\n    - 899\n    - 900\n    ''976'':\n    - 900\n    - 902\n    ''979'':\n    - 902\n    - 903\n    ''98'':\n    - 90\n    - 92\n    ''980'':\n    - 903\n    - 904\n    ''981'':\n    - 904\n    - 906\n    ''982'':\n    - 905\n    - 916\n    ''983'':\n    - 906\n    - 907\n    ''984'':\n    - 907\n    - 908\n    ''985'':\n    - 908\n    - 909\n    ''986'':\n    - 909\n    - 910\n    ''987'':\n    - 910\n    - 911\n    ''988'':\n    - 911\n    - 912\n    ''989'':\n    - 912\n    - 913\n    ''99'':\n    - 91\n    - 102\n    ''990'':\n    - 913\n    - 914\n    ''991'':\n    - 914\n    - 915\n    ''992'':\n    - 915\n    - 917\n    ''993'':\n    - 916\n    - 927\n    ''994'':\n    - 917\n    - 918\n    ''995'':\n    - 918\n    - 919\n    ''996'':\n    - 919\n    - 920\n    ''997'':\n    - 920\n    - 981\n    ''998'':\n    - 920\n    - 921\n    ''999'':\n    - 921\n    - 922\n  - ''0'':\n      ''2'': 0\n    ''100'':\n      ''101'': 108\n    ''1000'':\n      ''1001'': 1085\n    ''1001'':\n      ''1002'': 1086\n    ''1002'':\n      ''1004'': 1088\n    ''1004'':\n      ''1005'': 1090\n    ''1005'':\n      ''1007'': 1091\n    ''1007'':\n      ''1008'': 1094\n    ''1008'':\n      ''1009'': 1095\n    ''1009'':\n      ''1013'': 1096\n    ''101'':\n      ''104'': 110\n    ''1012'':\n      ''1023'': 1100\n      ''1034'': 1307\n    ''1013'':\n      ''1014'': 1101\n    ''1014'':\n      ''1015'': 1102\n    ''1015'':\n      ''1016'': 1103\n    ''1016'':\n      ''1017'': 1104\n    ''1017'':\n      ''1018'': 1105\n    ''1018'':\n      ''1019'': 1106\n    ''1019'':\n      ''1020'': 1107\n    ''102'':\n      ''114'': 111\n    ''1020'':\n      ''1021'': 1108\n    ''1021'':\n      ''1022'': 1109\n    ''1022'':\n      ''1024'': 1110\n    ''1023'':\n      ''1034'': 1111\n    ''1024'':\n      ''1025'': 1112\n    ''1025'':\n      ''1026'': 1113\n    ''1026'':\n      ''1027'': 1114\n    ''1027'':\n      ''1028'': 1115\n    ''1028'':\n      ''1029'': 1116\n    ''1029'':\n      ''1030'': 1117\n    ''1030'':\n      ''1031'': 1118\n    ''1031'':\n      ''1032'': 1119\n    ''1032'':\n      ''1033'': 1120\n    ''1033'':\n      ''1035'': 1121\n    ''1034'':\n      ''1046'': 1122\n    ''1035'':\n      ''1036'': 1123\n    ''1036'':\n      ''1037'': 1125\n      ''1038'': 1124\n    ''1037'':\n      ''1038'': 1126\n    ''1038'':\n      ''1040'': 1128\n    ''104'':\n      ''105'': 113\n    ''1040'':\n      ''1041'': 1130\n    ''1041'':\n      ''1042'': 1131\n    ''1042'':\n      ''1043'': 1132\n    ''1043'':\n      ''1044'': 1133\n    ''1044'':\n      ''1045'': 1134\n    ''1045'':\n      ''1047'': 1135\n    ''1046'':\n      ''1059'': 1136\n    ''1047'':\n      ''1048'': 1137\n    ''1048'':\n      ''1049'': 1138\n    ''1049'':\n      ''1050'': 1139\n    ''105'':\n      ''106'': 114\n    ''1050'':\n      ''1051'': 1140\n    ''1051'':\n      ''1052'': 1141\n    ''1052'':\n      ''1053'': 1142\n    ''1053'':\n      ''1054'': 1143\n    ''1054'':\n      ''1055'': 1144\n    ''1055'':\n      ''1058'': 1146\n    ''1058'':\n      ''1060'': 1150\n    ''1059'':\n      ''1072'': 1151\n    ''106'':\n      ''107'': 115\n    ''1060'':\n      ''1061'': 1152\n    ''1061'':\n      ''1062'': 1153\n      ''1064'': 1154\n    ''1062'':\n      ''1064'': 1289\n    ''1064'':\n      ''1066'': 1158\n    ''1066'':\n      ''1067'': 1160\n    ''1067'':\n      ''1068'': 1161\n    ''1068'':\n      ''1069'': 1162\n    ''1069'':\n      ''1070'': 1163\n    ''107'':\n      ''108'': 116\n    ''1070'':\n      ''1071'': 1164\n    ''1071'':\n      ''1073'': 1165\n    ''1072'':\n      ''1084'': 1166\n    ''1073'':\n      ''1074'': 1168\n    ''1074'':\n      ''1075'': 1169\n    ''1075'':\n      ''1076'': 1170\n    ''1076'':\n      ''1077'': 1171\n    ''1077'':\n      ''1078'': 1172\n    ''1078'':\n      ''1079'': 1173\n    ''1079'':\n      ''1080'': 1174\n    ''108'':\n      ''109'': 117\n    ''1080'':\n      ''1081'': 1175\n    ''1081'':\n      ''1082'': 1176\n    ''1082'':\n      ''1085'': 1177\n    ''1084'':\n      ''4'': 1179\n    ''1085'':\n      ''1086'': 1180\n    ''1086'':\n      ''1087'': 1181\n    ''1087'':\n      ''1088'': 1182\n    ''1088'':\n      ''1089'': 1183\n    ''1089'':\n      ''1090'': 1184\n    ''109'':\n      ''110'': 118\n    ''1090'':\n      ''1091'': 1185\n    ''1091'':\n      ''1092'': 1186\n    ''1092'':\n      ''1093'': 1187\n    ''1093'':\n      ''1094'': 1188\n    ''1094'':\n      ''5'': 1189\n    ''110'':\n      ''111'': 119\n    ''111'':\n      ''112'': 120\n    ''112'':\n      ''113'': 121\n    ''1120'':\n      ''12'': 1254\n    ''1121'':\n      ''12'': 1258\n    ''113'':\n      ''115'': 122\n    ''114'':\n      ''126'': 123\n    ''115'':\n      ''116'': 124\n    ''116'':\n      ''118'': 125\n    ''118'':\n      ''119'': 128\n    ''119'':\n      ''120'': 129\n    ''12'':\n      ''13'': 13\n    ''120'':\n      ''121'': 130\n    ''121'':\n      ''122'': 131\n    ''122'':\n      ''123'': 132\n    ''123'':\n      ''124'': 133\n    ''124'':\n      ''125'': 134\n    ''125'':\n      ''127'': 135\n    ''126'':\n      ''139'': 136\n    ''127'':\n      ''128'': 137\n    ''128'':\n      ''129'': 138\n    ''129'':\n      ''130'': 139\n    ''13'':\n      ''14'': 14\n    ''130'':\n      ''131'': 140\n    ''131'':\n      ''132'': 141\n    ''132'':\n      ''133'': 142\n    ''133'':\n      ''134'': 143\n    ''134'':\n      ''135'': 144\n    ''135'':\n      ''136'': 145\n    ''136'':\n      ''140'': 146\n    ''137'':\n      ''260'': 148\n      ''385'': 147\n    ''139'':\n      ''154'': 150\n    ''14'':\n      ''15'': 15\n    ''140'':\n      ''141'': 151\n    ''141'':\n      ''142'': 152\n    ''142'':\n      ''143'': 153\n    ''143'':\n      ''144'': 154\n    ''144'':\n      ''145'': 158\n      ''147'': 157\n      ''148'': 156\n      ''149'': 155\n    ''145'':\n      ''150'': 160\n    ''147'':\n      ''150'': 162\n    ''148'':\n      ''150'': 163\n    ''149'':\n      ''150'': 164\n    ''15'':\n      ''16'': 16\n    ''150'':\n      ''151'': 165\n    ''151'':\n      ''152'': 166\n    ''152'':\n      ''153'': 167\n    ''153'':\n      ''155'': 168\n    ''154'':\n      ''166'': 169\n    ''155'':\n      ''156'': 170\n    ''156'':\n      ''157'': 171\n    ''157'':\n      ''158'': 172\n    ''158'':\n      ''159'': 173\n    ''159'':\n      ''160'': 174\n    ''16'':\n      ''18'': 17\n    ''160'':\n      ''161'': 175\n    ''161'':\n      ''162'': 176\n    ''162'':\n      ''163'': 177\n    ''163'':\n      ''165'': 178\n    ''165'':\n      ''167'': 181\n    ''166'':\n      ''177'': 182\n    ''167'':\n      ''168'': 183\n    ''168'':\n      ''169'': 184\n    ''169'':\n      ''170'': 185\n    ''17'':\n      ''23'': 18\n    ''170'':\n      ''171'': 186\n    ''171'':\n      ''172'': 187\n    ''172'':\n      ''173'': 188\n    ''173'':\n      ''174'': 189\n    ''174'':\n      ''175'': 190\n    ''175'':\n      ''176'': 191\n    ''176'':\n      ''178'': 192\n    ''177'':\n      ''189'': 193\n    ''178'':\n      ''179'': 194\n    ''179'':\n      ''180'': 195\n    ''18'':\n      ''19'': 19\n    ''180'':\n      ''181'': 196\n    ''181'':\n      ''182'': 197\n    ''182'':\n      ''183'': 198\n    ''183'':\n      ''184'': 199\n    ''184'':\n      ''185'': 200\n    ''185'':\n      ''186'': 201\n    ''186'':\n      ''187'': 203\n      ''188'': 202\n    ''187'':\n      ''190'': 204\n    ''188'':\n      ''190'': 205\n    ''189'':\n      ''202'': 206\n    ''19'':\n      ''20'': 20\n    ''190'':\n      ''191'': 207\n    ''191'':\n      ''192'': 208\n    ''192'':\n      ''193'': 209\n    ''193'':\n      ''195'': 210\n    ''195'':\n      ''196'': 214\n      ''197'': 213\n    ''196'':\n      ''198'': 215\n    ''197'':\n      ''198'': 216\n    ''198'':\n      ''199'': 217\n    ''199'':\n      ''200'': 218\n    ''2'':\n      ''137'': 1\n    ''20'':\n      ''21'': 22\n      ''22'': 21\n    ''200'':\n      ''201'': 219\n    ''201'':\n      ''203'': 220\n    ''202'':\n      ''214'': 221\n    ''203'':\n      ''204'': 222\n      ''205'': 223\n    ''204'':\n      ''207'': 224\n    ''205'':\n      ''206'': 225\n    ''206'':\n      ''207'': 226\n    ''207'':\n      ''208'': 227\n    ''208'':\n      ''209'': 228\n    ''209'':\n      ''210'': 229\n    ''21'':\n      ''1'': 23\n    ''210'':\n      ''211'': 230\n    ''211'':\n      ''212'': 231\n    ''212'':\n      ''213'': 232\n    ''213'':\n      ''215'': 233\n    ''214'':\n      ''225'': 234\n    ''215'':\n      ''216'': 235\n    ''216'':\n      ''217'': 236\n    ''217'':\n      ''218'': 237\n    ''218'':\n      ''219'': 238\n    ''219'':\n      ''220'': 239\n    ''22'':\n      ''1'': 24\n    ''220'':\n      ''221'': 240\n    ''221'':\n      ''222'': 241\n    ''222'':\n      ''223'': 242\n    ''223'':\n      ''224'': 243\n    ''224'':\n      ''226'': 244\n    ''225'':\n      ''236'': 245\n      ''247'': 246\n    ''226'':\n      ''227'': 247\n    ''227'':\n      ''228'': 248\n    ''228'':\n      ''229'': 249\n    ''229'':\n      ''230'': 250\n    ''23'':\n      ''24'': 25\n    ''230'':\n      ''231'': 251\n    ''231'':\n      ''232'': 252\n    ''232'':\n      ''233'': 253\n    ''233'':\n      ''234'': 254\n    ''234'':\n      ''235'': 255\n    ''235'':\n      ''237'': 256\n    ''236'':\n      ''247'': 257\n    ''237'':\n      ''238'': 258\n    ''238'':\n      ''239'': 259\n    ''239'':\n      ''240'': 260\n    ''24'':\n      ''25'': 26\n    ''240'':\n      ''241'': 261\n    ''241'':\n      ''242'': 262\n    ''242'':\n      ''243'': 263\n    ''243'':\n      ''244'': 264\n    ''244'':\n      ''245'': 265\n    ''245'':\n      ''246'': 266\n    ''246'':\n      ''248'': 267\n    ''247'':\n      ''261'': 268\n    ''248'':\n      ''249'': 269\n    ''249'':\n      ''250'': 270\n    ''25'':\n      ''26'': 27\n    ''250'':\n      ''252'': 271\n    ''252'':\n      ''253'': 274\n    ''253'':\n      ''255'': 276\n    ''255'':\n      ''256'': 278\n    ''256'':\n      ''257'': 279\n    ''257'':\n      ''258'': 280\n    ''258'':\n      ''259'': 281\n    ''259'':\n      ''262'': 282\n    ''26'':\n      ''27'': 28\n    ''260'':\n      ''385'': 283\n    ''261'':\n      ''273'': 284\n    ''262'':\n      ''263'': 285\n    ''263'':\n      ''264'': 286\n    ''264'':\n      ''265'': 287\n    ''265'':\n      ''266'': 288\n    ''266'':\n      ''267'': 289\n    ''267'':\n      ''268'': 290\n    ''268'':\n      ''269'': 291\n    ''269'':\n      ''270'': 292\n    ''27'':\n      ''28'': 29\n    ''270'':\n      ''272'': 294\n    ''272'':\n      ''275'': 296\n    ''273'':\n      ''288'': 298\n    ''275'':\n      ''276'': 300\n    ''276'':\n      ''277'': 301\n    ''277'':\n      ''278'': 302\n    ''278'':\n      ''279'': 304\n      ''281'': 303\n    ''279'':\n      ''280'': 305\n    ''28'':\n      ''29'': 30\n    ''280'':\n      ''281'': 306\n    ''281'':\n      ''283'': 308\n    ''283'':\n      ''284'': 310\n      ''285'': 311\n    ''284'':\n      ''287'': 312\n    ''285'':\n      ''287'': 313\n    ''287'':\n      ''289'': 316\n    ''288'':\n      ''301'': 317\n    ''289'':\n      ''290'': 318\n    ''29'':\n      ''30'': 31\n    ''290'':\n      ''291'': 319\n    ''291'':\n      ''292'': 320\n    ''292'':\n      ''294'': 321\n    ''294'':\n      ''295'': 324\n    ''295'':\n      ''296'': 325\n    ''296'':\n      ''297'': 326\n    ''297'':\n      ''299'': 327\n    ''299'':\n      ''300'': 330\n    ''3'':\n      ''31'': 3\n    ''30'':\n      ''33'': 33\n    ''300'':\n      ''302'': 331\n    ''301'':\n      ''313'': 332\n    ''302'':\n      ''303'': 333\n    ''303'':\n      ''304'': 334\n    ''304'':\n      ''305'': 335\n    ''305'':\n      ''306'': 337\n      ''308'': 1202\n    ''306'':\n      ''308'': 338\n    ''308'':\n      ''309'': 341\n    ''309'':\n      ''310'': 342\n    ''31'':\n      ''43'': 34\n    ''310'':\n      ''311'': 343\n    ''311'':\n      ''312'': 344\n    ''312'':\n      ''314'': 345\n    ''313'':\n      ''324'': 346\n    ''314'':\n      ''315'': 347\n    ''315'':\n      ''316'': 348\n    ''316'':\n      ''317'': 349\n    ''317'':\n      ''318'': 350\n    ''318'':\n      ''319'': 351\n    ''319'':\n      ''320'': 352\n    ''320'':\n      ''321'': 353\n    ''321'':\n      ''322'': 354\n    ''322'':\n      ''323'': 355\n    ''323'':\n      ''326'': 357\n    ''324'':\n      ''336'': 358\n    ''326'':\n      ''327'': 360\n    ''327'':\n      ''328'': 361\n    ''328'':\n      ''329'': 362\n    ''329'':\n      ''330'': 363\n    ''33'':\n      ''34'': 36\n    ''330'':\n      ''331'': 364\n    ''331'':\n      ''332'': 365\n    ''332'':\n      ''333'': 366\n    ''333'':\n      ''334'': 367\n    ''334'':\n      ''335'': 368\n    ''335'':\n      ''337'': 369\n    ''336'':\n      ''348'': 370\n    ''337'':\n      ''339'': 372\n    ''339'':\n      ''340'': 374\n    ''34'':\n      ''35'': 37\n    ''340'':\n      ''341'': 375\n    ''341'':\n      ''342'': 376\n    ''342'':\n      ''343'': 377\n    ''343'':\n      ''344'': 378\n    ''344'':\n      ''345'': 379\n      ''346'': 380\n    ''345'':\n      ''346'': 381\n    ''346'':\n      ''347'': 382\n    ''347'':\n      ''349'': 383\n      ''350'': 384\n    ''348'':\n      ''360'': 385\n    ''349'':\n      ''351'': 386\n    ''35'':\n      ''36'': 38\n    ''350'':\n      ''351'': 387\n    ''351'':\n      ''352'': 388\n    ''352'':\n      ''353'': 389\n    ''353'':\n      ''354'': 390\n    ''354'':\n      ''355'': 391\n    ''355'':\n      ''356'': 392\n    ''356'':\n      ''357'': 393\n    ''357'':\n      ''358'': 394\n    ''358'':\n      ''359'': 395\n    ''359'':\n      ''361'': 396\n    ''36'':\n      ''37'': 39\n    ''360'':\n      ''374'': 397\n    ''361'':\n      ''362'': 399\n    ''362'':\n      ''363'': 400\n      ''364'': 401\n    ''363'':\n      ''365'': 402\n    ''364'':\n      ''365'': 403\n    ''365'':\n      ''366'': 404\n    ''366'':\n      ''368'': 406\n    ''368'':\n      ''369'': 408\n    ''369'':\n      ''370'': 409\n    ''37'':\n      ''38'': 40\n    ''370'':\n      ''371'': 410\n    ''371'':\n      ''372'': 411\n    ''372'':\n      ''375'': 412\n    ''374'':\n      ''386'': 414\n    ''375'':\n      ''376'': 415\n    ''376'':\n      ''377'': 416\n    ''377'':\n      ''378'': 417\n    ''378'':\n      ''379'': 418\n    ''379'':\n      ''380'': 419\n    ''38'':\n      ''39'': 41\n    ''380'':\n      ''381'': 420\n    ''381'':\n      ''382'': 421\n    ''382'':\n      ''383'': 422\n    ''383'':\n      ''384'': 423\n    ''384'':\n      ''387'': 424\n    ''385'':\n      ''505'': 425\n    ''386'':\n      ''398'': 426\n    ''387'':\n      ''388'': 427\n    ''388'':\n      ''389'': 428\n    ''389'':\n      ''390'': 429\n    ''39'':\n      ''40'': 42\n      ''41'': 43\n    ''390'':\n      ''391'': 430\n    ''391'':\n      ''392'': 431\n    ''392'':\n      ''393'': 432\n      ''394'': 433\n    ''393'':\n      ''395'': 434\n    ''394'':\n      ''395'': 435\n    ''395'':\n      ''396'': 436\n    ''396'':\n      ''397'': 437\n    ''397'':\n      ''399'': 438\n    ''398'':\n      ''412'': 439\n    ''399'':\n      ''400'': 440\n    ''4'':\n      ''17'': 4\n    ''40'':\n      ''41'': 44\n    ''400'':\n      ''401'': 441\n    ''401'':\n      ''403'': 442\n    ''403'':\n      ''404'': 445\n    ''404'':\n      ''405'': 446\n    ''405'':\n      ''406'': 447\n    ''406'':\n      ''408'': 449\n    ''408'':\n      ''410'': 1235\n    ''41'':\n      ''42'': 45\n    ''410'':\n      ''411'': 454\n    ''411'':\n      ''413'': 455\n    ''412'':\n      ''423'': 456\n    ''413'':\n      ''414'': 457\n    ''414'':\n      ''415'': 458\n    ''415'':\n      ''416'': 459\n    ''416'':\n      ''417'': 460\n    ''417'':\n      ''418'': 461\n    ''418'':\n      ''419'': 462\n    ''419'':\n      ''420'': 463\n    ''42'':\n      ''44'': 46\n    ''420'':\n      ''421'': 464\n    ''421'':\n      ''422'': 465\n    ''422'':\n      ''424'': 466\n    ''423'':\n      ''434'': 467\n    ''424'':\n      ''425'': 468\n    ''425'':\n      ''426'': 469\n    ''426'':\n      ''427'': 470\n    ''427'':\n      ''428'': 471\n    ''428'':\n      ''429'': 472\n    ''429'':\n      ''430'': 473\n    ''43'':\n      ''54'': 47\n    ''430'':\n      ''431'': 474\n    ''431'':\n      ''432'': 475\n    ''432'':\n      ''433'': 476\n    ''433'':\n      ''435'': 477\n    ''434'':\n      ''445'': 478\n    ''435'':\n      ''436'': 479\n    ''436'':\n      ''437'': 480\n    ''437'':\n      ''438'': 481\n    ''438'':\n      ''439'': 482\n    ''439'':\n      ''440'': 483\n    ''44'':\n      ''45'': 48\n    ''440'':\n      ''441'': 484\n    ''441'':\n      ''442'': 485\n    ''442'':\n      ''443'': 486\n    ''443'':\n      ''444'': 487\n    ''444'':\n      ''446'': 488\n    ''445'':\n      ''457'': 489\n    ''446'':\n      ''447'': 490\n    ''447'':\n      ''448'': 491\n    ''448'':\n      ''449'': 492\n    ''449'':\n      ''450'': 493\n    ''45'':\n      ''46'': 49\n    ''450'':\n      ''451'': 494\n    ''451'':\n      ''452'': 495\n    ''452'':\n      ''453'': 496\n    ''453'':\n      ''454'': 497\n    ''454'':\n      ''455'': 498\n      ''456'': 499\n    ''455'':\n      ''458'': 500\n    ''456'':\n      ''458'': 501\n    ''457'':\n      ''468'': 502\n    ''458'':\n      ''459'': 503\n    ''459'':\n      ''460'': 504\n    ''46'':\n      ''47'': 50\n    ''460'':\n      ''461'': 505\n    ''461'':\n      ''462'': 506\n    ''462'':\n      ''463'': 507\n    ''463'':\n      ''464'': 508\n    ''464'':\n      ''465'': 509\n    ''465'':\n      ''466'': 510\n    ''466'':\n      ''467'': 511\n    ''467'':\n      ''469'': 512\n    ''468'':\n      ''479'': 513\n    ''469'':\n      ''470'': 514\n    ''47'':\n      ''48'': 51\n    ''470'':\n      ''471'': 515\n    ''471'':\n      ''472'': 516\n    ''472'':\n      ''473'': 517\n    ''473'':\n      ''474'': 518\n    ''474'':\n      ''475'': 519\n    ''475'':\n      ''476'': 520\n    ''476'':\n      ''477'': 521\n    ''477'':\n      ''478'': 522\n    ''478'':\n      ''480'': 523\n    ''479'':\n      ''490'': 524\n    ''48'':\n      ''49'': 52\n    ''480'':\n      ''481'': 525\n    ''481'':\n      ''482'': 526\n    ''482'':\n      ''483'': 527\n    ''483'':\n      ''484'': 528\n    ''484'':\n      ''485'': 529\n    ''485'':\n      ''486'': 530\n    ''486'':\n      ''487'': 531\n    ''487'':\n      ''488'': 532\n    ''488'':\n      ''489'': 533\n    ''489'':\n      ''491'': 534\n    ''49'':\n      ''50'': 53\n    ''490'':\n      ''506'': 535\n    ''491'':\n      ''492'': 536\n    ''492'':\n      ''493'': 537\n    ''493'':\n      ''496'': 539\n      ''497'': 538\n    ''496'':\n      ''498'': 544\n    ''497'':\n      ''498'': 545\n    ''498'':\n      ''499'': 546\n    ''499'':\n      ''500'': 547\n    ''5'':\n      ''6'': 5\n    ''50'':\n      ''51'': 54\n    ''500'':\n      ''501'': 548\n      ''502'': 549\n    ''501'':\n      ''503'': 550\n    ''502'':\n      ''503'': 551\n    ''503'':\n      ''504'': 552\n      ''508'': 553\n    ''504'':\n      ''508'': 555\n    ''505'':\n      ''622'': 556\n    ''506'':\n      ''518'': 557\n    ''508'':\n      ''509'': 559\n    ''509'':\n      ''510'': 560\n    ''51'':\n      ''52'': 55\n    ''510'':\n      ''511'': 561\n    ''511'':\n      ''512'': 562\n    ''512'':\n      ''513'': 563\n    ''513'':\n      ''514'': 564\n    ''514'':\n      ''515'': 565\n    ''515'':\n      ''516'': 566\n    ''516'':\n      ''517'': 567\n    ''517'':\n      ''519'': 568\n    ''518'':\n      ''530'': 569\n    ''519'':\n      ''520'': 570\n    ''52'':\n      ''53'': 56\n    ''520'':\n      ''521'': 571\n    ''521'':\n      ''522'': 572\n    ''522'':\n      ''523'': 573\n    ''523'':\n      ''525'': 574\n    ''525'':\n      ''526'': 577\n    ''526'':\n      ''527'': 578\n    ''527'':\n      ''528'': 579\n    ''528'':\n      ''529'': 580\n    ''529'':\n      ''531'': 581\n    ''53'':\n      ''55'': 57\n    ''530'':\n      ''541'': 582\n    ''531'':\n      ''532'': 583\n    ''532'':\n      ''533'': 584\n    ''533'':\n      ''534'': 585\n    ''534'':\n      ''535'': 586\n    ''535'':\n      ''536'': 587\n    ''536'':\n      ''537'': 588\n    ''537'':\n      ''538'': 589\n    ''538'':\n      ''539'': 590\n    ''539'':\n      ''540'': 591\n    ''54'':\n      ''66'': 58\n    ''540'':\n      ''542'': 592\n    ''541'':\n      ''552'': 593\n    ''542'':\n      ''543'': 594\n    ''543'':\n      ''544'': 595\n    ''544'':\n      ''545'': 596\n    ''545'':\n      ''546'': 597\n    ''546'':\n      ''547'': 598\n    ''547'':\n      ''548'': 599\n    ''548'':\n      ''549'': 600\n    ''549'':\n      ''550'': 601\n    ''55'':\n      ''56'': 59\n    ''550'':\n      ''551'': 602\n    ''551'':\n      ''553'': 603\n    ''552'':\n      ''563'': 604\n    ''553'':\n      ''554'': 605\n    ''554'':\n      ''555'': 606\n    ''555'':\n      ''556'': 607\n    ''556'':\n      ''557'': 608\n    ''557'':\n      ''558'': 609\n    ''558'':\n      ''559'': 610\n    ''559'':\n      ''560'': 611\n    ''56'':\n      ''57'': 60\n    ''560'':\n      ''561'': 612\n    ''561'':\n      ''562'': 613\n    ''562'':\n      ''564'': 614\n    ''563'':\n      ''576'': 615\n    ''564'':\n      ''565'': 616\n    ''565'':\n      ''566'': 617\n    ''566'':\n      ''567'': 618\n    ''567'':\n      ''568'': 619\n    ''568'':\n      ''569'': 620\n    ''569'':\n      ''570'': 621\n      ''571'': 622\n    ''57'':\n      ''58'': 61\n    ''570'':\n      ''572'': 623\n    ''571'':\n      ''572'': 624\n    ''572'':\n      ''574'': 626\n    ''574'':\n      ''575'': 628\n    ''575'':\n      ''577'': 629\n    ''576'':\n      ''587'': 630\n    ''577'':\n      ''578'': 631\n    ''578'':\n      ''579'': 632\n    ''579'':\n      ''580'': 633\n    ''58'':\n      ''59'': 62\n    ''580'':\n      ''581'': 634\n    ''581'':\n      ''582'': 635\n    ''582'':\n      ''583'': 636\n    ''583'':\n      ''584'': 637\n    ''584'':\n      ''585'': 638\n    ''585'':\n      ''586'': 639\n    ''586'':\n      ''588'': 640\n    ''587'':\n      ''598'': 641\n    ''588'':\n      ''589'': 642\n    ''589'':\n      ''590'': 643\n    ''59'':\n      ''60'': 63\n    ''590'':\n      ''591'': 644\n    ''591'':\n      ''592'': 645\n    ''592'':\n      ''593'': 646\n    ''593'':\n      ''594'': 647\n    ''594'':\n      ''595'': 648\n    ''595'':\n      ''596'': 649\n    ''596'':\n      ''597'': 650\n    ''597'':\n      ''599'': 651\n    ''598'':\n      ''610'': 652\n    ''599'':\n      ''600'': 653\n    ''6'':\n      ''7'': 6\n    ''60'':\n      ''62'': 65\n    ''600'':\n      ''601'': 654\n    ''601'':\n      ''602'': 655\n    ''602'':\n      ''603'': 656\n    ''603'':\n      ''604'': 657\n    ''604'':\n      ''605'': 659\n      ''606'': 658\n    ''605'':\n      ''1'': 660\n    ''606'':\n      ''607'': 661\n    ''607'':\n      ''608'': 662\n    ''608'':\n      ''609'': 663\n    ''609'':\n      ''611'': 664\n    ''610'':\n      ''623'': 665\n    ''611'':\n      ''612'': 666\n    ''612'':\n      ''613'': 667\n    ''613'':\n      ''614'': 668\n    ''614'':\n      ''615'': 669\n    ''615'':\n      ''616'': 670\n    ''616'':\n      ''617'': 671\n    ''617'':\n      ''619'': 672\n    ''619'':\n      ''620'': 675\n    ''62'':\n      ''63'': 67\n    ''620'':\n      ''621'': 676\n    ''621'':\n      ''624'': 677\n    ''622'':\n      ''739'': 678\n    ''623'':\n      ''634'': 679\n    ''624'':\n      ''625'': 680\n    ''625'':\n      ''626'': 681\n    ''626'':\n      ''627'': 682\n    ''627'':\n      ''628'': 683\n    ''628'':\n      ''629'': 684\n    ''629'':\n      ''630'': 685\n    ''63'':\n      ''64'': 68\n    ''630'':\n      ''631'': 686\n    ''631'':\n      ''632'': 687\n    ''632'':\n      ''633'': 688\n    ''633'':\n      ''635'': 689\n    ''634'':\n      ''647'': 690\n      ''672'': 691\n    ''635'':\n      ''636'': 692\n    ''636'':\n      ''637'': 693\n    ''637'':\n      ''638'': 694\n    ''638'':\n      ''639'': 695\n    ''639'':\n      ''640'': 696\n      ''641'': 697\n    ''64'':\n      ''65'': 69\n    ''640'':\n      ''642'': 698\n    ''641'':\n      ''642'': 699\n    ''642'':\n      ''644'': 701\n    ''644'':\n      ''645'': 703\n    ''645'':\n      ''646'': 704\n    ''646'':\n      ''648'': 705\n    ''647'':\n      ''658'': 706\n    ''648'':\n      ''649'': 707\n    ''649'':\n      ''650'': 708\n    ''65'':\n      ''67'': 70\n    ''650'':\n      ''651'': 709\n    ''651'':\n      ''652'': 710\n    ''652'':\n      ''653'': 711\n    ''653'':\n      ''654'': 712\n    ''654'':\n      ''655'': 713\n    ''655'':\n      ''656'': 714\n    ''656'':\n      ''657'': 715\n    ''657'':\n      ''659'': 716\n    ''658'':\n      ''672'': 717\n    ''659'':\n      ''660'': 718\n    ''66'':\n      ''78'': 71\n    ''660'':\n      ''661'': 720\n      ''662'': 719\n    ''661'':\n      ''663'': 721\n    ''662'':\n      ''663'': 722\n    ''663'':\n      ''664'': 723\n      ''665'': 724\n    ''664'':\n      ''666'': 725\n    ''665'':\n      ''666'': 726\n    ''666'':\n      ''668'': 728\n    ''668'':\n      ''669'': 730\n    ''669'':\n      ''670'': 731\n    ''67'':\n      ''68'': 72\n    ''670'':\n      ''671'': 732\n    ''671'':\n      ''673'': 733\n    ''672'':\n      ''683'': 734\n    ''673'':\n      ''674'': 735\n    ''674'':\n      ''675'': 736\n    ''675'':\n      ''676'': 737\n    ''676'':\n      ''677'': 738\n    ''677'':\n      ''678'': 739\n    ''678'':\n      ''679'': 740\n    ''679'':\n      ''680'': 741\n    ''68'':\n      ''70'': 74\n    ''680'':\n      ''681'': 742\n    ''681'':\n      ''682'': 743\n    ''682'':\n      ''684'': 744\n    ''683'':\n      ''694'': 745\n    ''684'':\n      ''685'': 746\n    ''685'':\n      ''686'': 747\n    ''686'':\n      ''687'': 748\n    ''687'':\n      ''688'': 749\n    ''688'':\n      ''689'': 750\n    ''689'':\n      ''690'': 751\n    ''690'':\n      ''691'': 752\n    ''691'':\n      ''692'': 753\n    ''692'':\n      ''693'': 754\n    ''693'':\n      ''695'': 755\n    ''694'':\n      ''705'': 756\n    ''695'':\n      ''696'': 757\n    ''696'':\n      ''697'': 758\n    ''697'':\n      ''698'': 759\n    ''698'':\n      ''699'': 760\n    ''699'':\n      ''700'': 761\n    ''7'':\n      ''9'': 8\n    ''70'':\n      ''71'': 76\n    ''700'':\n      ''701'': 762\n    ''701'':\n      ''702'': 763\n    ''702'':\n      ''703'': 764\n    ''703'':\n      ''704'': 765\n    ''704'':\n      ''706'': 766\n    ''705'':\n      ''716'': 767\n    ''706'':\n      ''707'': 768\n    ''707'':\n      ''708'': 769\n    ''708'':\n      ''709'': 770\n    ''709'':\n      ''710'': 771\n    ''71'':\n      ''72'': 77\n    ''710'':\n      ''711'': 772\n    ''711'':\n      ''712'': 773\n    ''712'':\n      ''713'': 774\n    ''713'':\n      ''714'': 775\n    ''714'':\n      ''715'': 776\n    ''715'':\n      ''717'': 777\n    ''716'':\n      ''728'': 778\n    ''717'':\n      ''718'': 779\n    ''718'':\n      ''719'': 780\n    ''719'':\n      ''720'': 781\n    ''72'':\n      ''73'': 78\n    ''720'':\n      ''721'': 782\n    ''721'':\n      ''723'': 784\n    ''723'':\n      ''724'': 786\n    ''724'':\n      ''725'': 787\n    ''725'':\n      ''726'': 788\n    ''726'':\n      ''727'': 789\n    ''727'':\n      ''729'': 790\n    ''728'':\n      ''740'': 791\n    ''729'':\n      ''730'': 792\n    ''73'':\n      ''74'': 79\n    ''730'':\n      ''731'': 793\n    ''731'':\n      ''732'': 794\n    ''732'':\n      ''733'': 795\n    ''733'':\n      ''734'': 796\n    ''734'':\n      ''735'': 797\n    ''735'':\n      ''736'': 798\n    ''736'':\n      ''737'': 799\n    ''737'':\n      ''738'': 800\n    ''738'':\n      ''741'': 801\n    ''739'':\n      ''857'': 802\n    ''74'':\n      ''75'': 80\n    ''740'':\n      ''751'': 803\n    ''741'':\n      ''742'': 804\n    ''742'':\n      ''743'': 805\n    ''743'':\n      ''744'': 806\n    ''744'':\n      ''745'': 807\n    ''745'':\n      ''746'': 808\n    ''746'':\n      ''747'': 809\n    ''747'':\n      ''748'': 810\n    ''748'':\n      ''749'': 811\n    ''749'':\n      ''750'': 812\n    ''75'':\n      ''76'': 81\n    ''750'':\n      ''752'': 813\n    ''751'':\n      ''762'': 814\n    ''752'':\n      ''753'': 815\n    ''753'':\n      ''754'': 816\n    ''754'':\n      ''755'': 817\n    ''755'':\n      ''756'': 818\n    ''756'':\n      ''757'': 819\n    ''757'':\n      ''758'': 820\n    ''758'':\n      ''759'': 821\n    ''759'':\n      ''760'': 822\n    ''76'':\n      ''77'': 82\n    ''760'':\n      ''761'': 823\n    ''761'':\n      ''763'': 824\n    ''762'':\n      ''774'': 826\n    ''763'':\n      ''764'': 827\n    ''764'':\n      ''765'': 828\n    ''765'':\n      ''766'': 829\n    ''766'':\n      ''767'': 830\n    ''767'':\n      ''768'': 831\n    ''768'':\n      ''769'': 832\n    ''769'':\n      ''770'': 833\n    ''77'':\n      ''79'': 83\n    ''770'':\n      ''771'': 834\n    ''771'':\n      ''772'': 835\n    ''772'':\n      ''775'': 836\n    ''774'':\n      ''786'': 838\n    ''775'':\n      ''776'': 839\n    ''776'':\n      ''777'': 840\n    ''777'':\n      ''778'': 841\n    ''778'':\n      ''779'': 842\n    ''779'':\n      ''780'': 843\n    ''78'':\n      ''91'': 84\n    ''780'':\n      ''781'': 844\n    ''781'':\n      ''783'': 845\n    ''783'':\n      ''784'': 848\n    ''784'':\n      ''785'': 849\n    ''785'':\n      ''787'': 850\n    ''786'':\n      ''797'': 851\n    ''787'':\n      ''788'': 852\n    ''788'':\n      ''789'': 855\n      ''792'': 854\n      ''795'': 853\n    ''789'':\n      ''790'': 856\n    ''79'':\n      ''80'': 85\n    ''790'':\n      ''791'': 857\n    ''791'':\n      ''792'': 858\n    ''792'':\n      ''793'': 859\n    ''793'':\n      ''794'': 860\n    ''794'':\n      ''795'': 861\n    ''795'':\n      ''796'': 862\n    ''796'':\n      ''798'': 863\n    ''797'':\n      ''809'': 865\n    ''798'':\n      ''799'': 866\n    ''799'':\n      ''800'': 867\n    ''80'':\n      ''81'': 86\n    ''800'':\n      ''801'': 868\n    ''801'':\n      ''802'': 869\n    ''802'':\n      ''803'': 870\n    ''803'':\n      ''804'': 871\n    ''804'':\n      ''805'': 872\n      ''806'': 873\n    ''805'':\n      ''806'': 874\n    ''806'':\n      ''807'': 875\n    ''807'':\n      ''810'': 876\n    ''809'':\n      ''821'': 878\n    ''81'':\n      ''82'': 87\n    ''810'':\n      ''811'': 879\n    ''811'':\n      ''813'': 880\n    ''813'':\n      ''814'': 1247\n      ''815'': 883\n    ''814'':\n      ''815'': 884\n    ''815'':\n      ''816'': 885\n    ''816'':\n      ''817'': 886\n    ''817'':\n      ''818'': 887\n    ''818'':\n      ''819'': 888\n    ''819'':\n      ''820'': 889\n    ''82'':\n      ''83'': 88\n    ''820'':\n      ''822'': 890\n    ''821'':\n      ''834'': 891\n    ''822'':\n      ''823'': 892\n    ''823'':\n      ''824'': 893\n    ''824'':\n      ''825'': 894\n    ''825'':\n      ''826'': 895\n    ''826'':\n      ''827'': 896\n    ''827'':\n      ''828'': 897\n    ''828'':\n      ''829'': 899\n      ''830'': 900\n      ''831'': 898\n    ''829'':\n      ''832'': 901\n    ''83'':\n      ''86'': 90\n    ''830'':\n      ''832'': 902\n    ''831'':\n      ''832'': 903\n    ''832'':\n      ''833'': 904\n    ''833'':\n      ''835'': 905\n      ''836'': 906\n    ''834'':\n      ''846'': 907\n    ''835'':\n      ''837'': 908\n    ''836'':\n      ''837'': 909\n    ''837'':\n      ''838'': 910\n    ''838'':\n      ''839'': 911\n    ''839'':\n      ''840'': 912\n    ''840'':\n      ''841'': 913\n    ''841'':\n      ''842'': 914\n    ''842'':\n      ''843'': 915\n    ''843'':\n      ''844'': 916\n    ''844'':\n      ''845'': 917\n    ''845'':\n      ''847'': 918\n    ''846'':\n      ''858'': 919\n    ''847'':\n      ''848'': 920\n    ''848'':\n      ''849'': 921\n    ''849'':\n      ''850'': 922\n    ''850'':\n      ''851'': 923\n    ''851'':\n      ''852'': 924\n    ''852'':\n      ''853'': 925\n    ''853'':\n      ''854'': 926\n    ''854'':\n      ''855'': 927\n    ''855'':\n      ''856'': 928\n    ''856'':\n      ''859'': 929\n    ''857'':\n      ''971'': 930\n    ''858'':\n      ''870'': 931\n    ''859'':\n      ''860'': 932\n    ''86'':\n      ''87'': 94\n    ''860'':\n      ''861'': 933\n      ''863'': 934\n    ''861'':\n      ''863'': 936\n    ''863'':\n      ''864'': 938\n    ''864'':\n      ''865'': 939\n    ''865'':\n      ''866'': 940\n    ''866'':\n      ''867'': 941\n    ''867'':\n      ''868'': 942\n    ''868'':\n      ''869'': 943\n    ''869'':\n      ''871'': 944\n    ''87'':\n      ''88'': 95\n    ''870'':\n      ''882'': 945\n    ''871'':\n      ''872'': 946\n    ''872'':\n      ''873'': 947\n    ''873'':\n      ''874'': 948\n    ''874'':\n      ''875'': 949\n    ''875'':\n      ''877'': 950\n    ''877'':\n      ''878'': 953\n    ''878'':\n      ''879'': 954\n    ''879'':\n      ''880'': 955\n    ''88'':\n      ''89'': 96\n    ''880'':\n      ''881'': 956\n    ''881'':\n      ''883'': 957\n    ''882'':\n      ''893'': 958\n    ''883'':\n      ''884'': 959\n    ''884'':\n      ''885'': 960\n    ''885'':\n      ''886'': 961\n    ''886'':\n      ''887'': 962\n    ''887'':\n      ''888'': 963\n    ''888'':\n      ''889'': 964\n    ''889'':\n      ''890'': 965\n    ''89'':\n      ''90'': 97\n    ''890'':\n      ''891'': 966\n    ''891'':\n      ''892'': 967\n    ''892'':\n      ''894'': 968\n    ''893'':\n      ''905'': 969\n    ''894'':\n      ''895'': 970\n    ''895'':\n      ''896'': 971\n    ''896'':\n      ''897'': 972\n    ''897'':\n      ''898'': 973\n    ''898'':\n      ''899'': 974\n    ''899'':\n      ''900'': 975\n    ''9'':\n      ''1120'': 1253\n      ''1121'': 1257\n    ''90'':\n      ''92'': 98\n    ''900'':\n      ''902'': 976\n    ''902'':\n      ''903'': 979\n    ''903'':\n      ''904'': 980\n    ''904'':\n      ''906'': 981\n    ''905'':\n      ''916'': 982\n    ''906'':\n      ''907'': 983\n    ''907'':\n      ''908'': 984\n    ''908'':\n      ''909'': 985\n    ''909'':\n      ''910'': 986\n    ''91'':\n      ''102'': 99\n    ''910'':\n      ''911'': 987\n    ''911'':\n      ''912'': 988\n    ''912'':\n      ''913'': 989\n    ''913'':\n      ''914'': 990\n    ''914'':\n      ''915'': 991\n    ''915'':\n      ''917'': 992\n    ''916'':\n      ''927'': 993\n    ''917'':\n      ''918'': 994\n    ''918'':\n      ''919'': 995\n    ''919'':\n      ''920'': 996\n    ''92'':\n      ''93'': 100\n    ''920'':\n      ''921'': 998\n      ''981'': 997\n    ''921'':\n      ''922'': 999\n    ''922'':\n      ''923'': 1000\n    ''923'':\n      ''924'': 1001\n    ''924'':\n      ''925'': 1002\n    ''925'':\n      ''926'': 1003\n    ''926'':\n      ''928'': 1004\n    ''927'':\n      ''938'': 1005\n    ''928'':\n      ''929'': 1006\n    ''929'':\n      ''930'': 1007\n    ''93'':\n      ''94'': 101\n    ''930'':\n      ''931'': 1008\n    ''931'':\n      ''932'': 1009\n    ''932'':\n      ''933'': 1010\n    ''933'':\n      ''934'': 1011\n    ''934'':\n      ''935'': 1012\n    ''935'':\n      ''936'': 1013\n    ''936'':\n      ''937'': 1014\n    ''937'':\n      ''939'': 1015\n    ''938'':\n      ''949'': 1016\n    ''939'':\n      ''940'': 1017\n    ''94'':\n      ''95'': 102\n    ''940'':\n      ''941'': 1018\n    ''941'':\n      ''942'': 1019\n    ''942'':\n      ''943'': 1020\n    ''943'':\n      ''944'': 1021\n    ''944'':\n      ''945'': 1022\n    ''945'':\n      ''946'': 1023\n    ''946'':\n      ''947'': 1024\n    ''947'':\n      ''948'': 1025\n    ''948'':\n      ''950'': 1026\n    ''949'':\n      ''960'': 1027\n    ''95'':\n      ''96'': 103\n    ''950'':\n      ''951'': 1028\n    ''951'':\n      ''952'': 1029\n    ''952'':\n      ''953'': 1030\n    ''953'':\n      ''954'': 1031\n    ''954'':\n      ''955'': 1032\n    ''955'':\n      ''956'': 1033\n    ''956'':\n      ''957'': 1034\n    ''957'':\n      ''958'': 1035\n    ''958'':\n      ''959'': 1036\n    ''959'':\n      ''961'': 1037\n    ''96'':\n      ''97'': 104\n    ''960'':\n      ''972'': 1038\n    ''961'':\n      ''962'': 1039\n    ''962'':\n      ''963'': 1040\n    ''963'':\n      ''964'': 1041\n    ''964'':\n      ''965'': 1042\n    ''965'':\n      ''966'': 1043\n      ''967'': 1044\n    ''966'':\n      ''967'': 1045\n    ''967'':\n      ''968'': 1047\n      ''970'': 1046\n    ''968'':\n      ''969'': 1048\n    ''969'':\n      ''970'': 1049\n    ''97'':\n      ''98'': 105\n    ''970'':\n      ''973'': 1050\n    ''971'':\n      ''3'': 1051\n    ''972'':\n      ''984'': 1054\n      ''985'': 1052\n    ''973'':\n      ''974'': 1055\n    ''974'':\n      ''975'': 1056\n    ''975'':\n      ''976'': 1057\n    ''976'':\n      ''977'': 1058\n    ''977'':\n      ''978'': 1059\n    ''978'':\n      ''979'': 1060\n    ''979'':\n      ''980'': 1061\n    ''98'':\n      ''99'': 106\n    ''980'':\n      ''981'': 1062\n    ''981'':\n      ''982'': 1063\n    ''982'':\n      ''986'': 1064\n    ''984'':\n      ''997'': 1066\n    ''985'':\n      ''997'': 1067\n    ''986'':\n      ''987'': 1068\n    ''987'':\n      ''988'': 1069\n    ''988'':\n      ''989'': 1070\n    ''989'':\n      ''990'': 1071\n    ''99'':\n      ''100'': 107\n    ''990'':\n      ''992'': 1073\n    ''992'':\n      ''993'': 1248\n      ''994'': 1075\n    ''993'':\n      ''994'': 1076\n    ''994'':\n      ''995'': 1077\n    ''995'':\n      ''996'': 1078\n    ''996'':\n      ''998'': 1079\n    ''997'':\n      ''1012'': 1081\n    ''998'':\n      ''999'': 1083\n    ''999'':\n      ''1000'': 1084\n  - ''1'':\n      ''21'': 23\n      ''22'': 24\n      ''605'': 660\n    ''100'':\n      ''99'': 107\n    ''1000'':\n      ''999'': 1084\n    ''1001'':\n      ''1000'': 1085\n    ''1002'':\n      ''1001'': 1086\n    ''1004'':\n      ''1002'': 1088\n    ''1005'':\n      ''1004'': 1090\n    ''1007'':\n      ''1005'': 1091\n    ''1008'':\n      ''1007'': 1094\n    ''1009'':\n      ''1008'': 1095\n    ''101'':\n      ''100'': 108\n    ''1012'':\n      ''997'': 1081\n    ''1013'':\n      ''1009'': 1096\n    ''1014'':\n      ''1013'': 1101\n    ''1015'':\n      ''1014'': 1102\n    ''1016'':\n      ''1015'': 1103\n    ''1017'':\n      ''1016'': 1104\n    ''1018'':\n      ''1017'': 1105\n    ''1019'':\n      ''1018'': 1106\n    ''102'':\n      ''91'': 99\n    ''1020'':\n      ''1019'': 1107\n    ''1021'':\n      ''1020'': 1108\n    ''1022'':\n      ''1021'': 1109\n    ''1023'':\n      ''1012'': 1100\n    ''1024'':\n      ''1022'': 1110\n    ''1025'':\n      ''1024'': 1112\n    ''1026'':\n      ''1025'': 1113\n    ''1027'':\n      ''1026'': 1114\n    ''1028'':\n      ''1027'': 1115\n    ''1029'':\n      ''1028'': 1116\n    ''1030'':\n      ''1029'': 1117\n    ''1031'':\n      ''1030'': 1118\n    ''1032'':\n      ''1031'': 1119\n    ''1033'':\n      ''1032'': 1120\n    ''1034'':\n      ''1012'': 1307\n      ''1023'': 1111\n    ''1035'':\n      ''1033'': 1121\n    ''1036'':\n      ''1035'': 1123\n    ''1037'':\n      ''1036'': 1125\n    ''1038'':\n      ''1036'': 1124\n      ''1037'': 1126\n    ''104'':\n      ''101'': 110\n    ''1040'':\n      ''1038'': 1128\n    ''1041'':\n      ''1040'': 1130\n    ''1042'':\n      ''1041'': 1131\n    ''1043'':\n      ''1042'': 1132\n    ''1044'':\n      ''1043'': 1133\n    ''1045'':\n      ''1044'': 1134\n    ''1046'':\n      ''1034'': 1122\n    ''1047'':\n      ''1045'': 1135\n    ''1048'':\n      ''1047'': 1137\n    ''1049'':\n      ''1048'': 1138\n    ''105'':\n      ''104'': 113\n    ''1050'':\n      ''1049'': 1139\n    ''1051'':\n      ''1050'': 1140\n    ''1052'':\n      ''1051'': 1141\n    ''1053'':\n      ''1052'': 1142\n    ''1054'':\n      ''1053'': 1143\n    ''1055'':\n      ''1054'': 1144\n    ''1058'':\n      ''1055'': 1146\n    ''1059'':\n      ''1046'': 1136\n    ''106'':\n      ''105'': 114\n    ''1060'':\n      ''1058'': 1150\n    ''1061'':\n      ''1060'': 1152\n    ''1062'':\n      ''1061'': 1153\n    ''1064'':\n      ''1061'': 1154\n      ''1062'': 1289\n    ''1066'':\n      ''1064'': 1158\n    ''1067'':\n      ''1066'': 1160\n    ''1068'':\n      ''1067'': 1161\n    ''1069'':\n      ''1068'': 1162\n    ''107'':\n      ''106'': 115\n    ''1070'':\n      ''1069'': 1163\n    ''1071'':\n      ''1070'': 1164\n    ''1072'':\n      ''1059'': 1151\n    ''1073'':\n      ''1071'': 1165\n    ''1074'':\n      ''1073'': 1168\n    ''1075'':\n      ''1074'': 1169\n    ''1076'':\n      ''1075'': 1170\n    ''1077'':\n      ''1076'': 1171\n    ''1078'':\n      ''1077'': 1172\n    ''1079'':\n      ''1078'': 1173\n    ''108'':\n      ''107'': 116\n    ''1080'':\n      ''1079'': 1174\n    ''1081'':\n      ''1080'': 1175\n    ''1082'':\n      ''1081'': 1176\n    ''1084'':\n      ''1072'': 1166\n    ''1085'':\n      ''1082'': 1177\n    ''1086'':\n      ''1085'': 1180\n    ''1087'':\n      ''1086'': 1181\n    ''1088'':\n      ''1087'': 1182\n    ''1089'':\n      ''1088'': 1183\n    ''109'':\n      ''108'': 117\n    ''1090'':\n      ''1089'': 1184\n    ''1091'':\n      ''1090'': 1185\n    ''1092'':\n      ''1091'': 1186\n    ''1093'':\n      ''1092'': 1187\n    ''1094'':\n      ''1093'': 1188\n    ''110'':\n      ''109'': 118\n    ''111'':\n      ''110'': 119\n    ''112'':\n      ''111'': 120\n    ''1120'':\n      ''9'': 1253\n    ''1121'':\n      ''9'': 1257\n    ''113'':\n      ''112'': 121\n    ''114'':\n      ''102'': 111\n    ''115'':\n      ''113'': 122\n    ''116'':\n      ''115'': 124\n    ''118'':\n      ''116'': 125\n    ''119'':\n      ''118'': 128\n    ''12'':\n      ''1120'': 1254\n      ''1121'': 1258\n    ''120'':\n      ''119'': 129\n    ''121'':\n      ''120'': 130\n    ''122'':\n      ''121'': 131\n    ''123'':\n      ''122'': 132\n    ''124'':\n      ''123'': 133\n    ''125'':\n      ''124'': 134\n    ''126'':\n      ''114'': 123\n    ''127'':\n      ''125'': 135\n    ''128'':\n      ''127'': 137\n    ''129'':\n      ''128'': 138\n    ''13'':\n      ''12'': 13\n    ''130'':\n      ''129'': 139\n    ''131'':\n      ''130'': 140\n    ''132'':\n      ''131'': 141\n    ''133'':\n      ''132'': 142\n    ''134'':\n      ''133'': 143\n    ''135'':\n      ''134'': 144\n    ''136'':\n      ''135'': 145\n    ''137'':\n      ''2'': 1\n    ''139'':\n      ''126'': 136\n    ''14'':\n      ''13'': 14\n    ''140'':\n      ''136'': 146\n    ''141'':\n      ''140'': 151\n    ''142'':\n      ''141'': 152\n    ''143'':\n      ''142'': 153\n    ''144'':\n      ''143'': 154\n    ''145'':\n      ''144'': 158\n    ''147'':\n      ''144'': 157\n    ''148'':\n      ''144'': 156\n    ''149'':\n      ''144'': 155\n    ''15'':\n      ''14'': 15\n    ''150'':\n      ''145'': 160\n      ''147'': 162\n      ''148'': 163\n      ''149'': 164\n    ''151'':\n      ''150'': 165\n    ''152'':\n      ''151'': 166\n    ''153'':\n      ''152'': 167\n    ''154'':\n      ''139'': 150\n    ''155'':\n      ''153'': 168\n    ''156'':\n      ''155'': 170\n    ''157'':\n      ''156'': 171\n    ''158'':\n      ''157'': 172\n    ''159'':\n      ''158'': 173\n    ''16'':\n      ''15'': 16\n    ''160'':\n      ''159'': 174\n    ''161'':\n      ''160'': 175\n    ''162'':\n      ''161'': 176\n    ''163'':\n      ''162'': 177\n    ''165'':\n      ''163'': 178\n    ''166'':\n      ''154'': 169\n    ''167'':\n      ''165'': 181\n    ''168'':\n      ''167'': 183\n    ''169'':\n      ''168'': 184\n    ''17'':\n      ''4'': 4\n    ''170'':\n      ''169'': 185\n    ''171'':\n      ''170'': 186\n    ''172'':\n      ''171'': 187\n    ''173'':\n      ''172'': 188\n    ''174'':\n      ''173'': 189\n    ''175'':\n      ''174'': 190\n    ''176'':\n      ''175'': 191\n    ''177'':\n      ''166'': 182\n    ''178'':\n      ''176'': 192\n    ''179'':\n      ''178'': 194\n    ''18'':\n      ''16'': 17\n    ''180'':\n      ''179'': 195\n    ''181'':\n      ''180'': 196\n    ''182'':\n      ''181'': 197\n    ''183'':\n      ''182'': 198\n    ''184'':\n      ''183'': 199\n    ''185'':\n      ''184'': 200\n    ''186'':\n      ''185'': 201\n    ''187'':\n      ''186'': 203\n    ''188'':\n      ''186'': 202\n    ''189'':\n      ''177'': 193\n    ''19'':\n      ''18'': 19\n    ''190'':\n      ''187'': 204\n      ''188'': 205\n    ''191'':\n      ''190'': 207\n    ''192'':\n      ''191'': 208\n    ''193'':\n      ''192'': 209\n    ''195'':\n      ''193'': 210\n    ''196'':\n      ''195'': 214\n    ''197'':\n      ''195'': 213\n    ''198'':\n      ''196'': 215\n      ''197'': 216\n    ''199'':\n      ''198'': 217\n    ''2'':\n      ''0'': 0\n    ''20'':\n      ''19'': 20\n    ''200'':\n      ''199'': 218\n    ''201'':\n      ''200'': 219\n    ''202'':\n      ''189'': 206\n    ''203'':\n      ''201'': 220\n    ''204'':\n      ''203'': 222\n    ''205'':\n      ''203'': 223\n    ''206'':\n      ''205'': 225\n    ''207'':\n      ''204'': 224\n      ''206'': 226\n    ''208'':\n      ''207'': 227\n    ''209'':\n      ''208'': 228\n    ''21'':\n      ''20'': 22\n    ''210'':\n      ''209'': 229\n    ''211'':\n      ''210'': 230\n    ''212'':\n      ''211'': 231\n    ''213'':\n      ''212'': 232\n    ''214'':\n      ''202'': 221\n    ''215'':\n      ''213'': 233\n    ''216'':\n      ''215'': 235\n    ''217'':\n      ''216'': 236\n    ''218'':\n      ''217'': 237\n    ''219'':\n      ''218'': 238\n    ''22'':\n      ''20'': 21\n    ''220'':\n      ''219'': 239\n    ''221'':\n      ''220'': 240\n    ''222'':\n      ''221'': 241\n    ''223'':\n      ''222'': 242\n    ''224'':\n      ''223'': 243\n    ''225'':\n      ''214'': 234\n    ''226'':\n      ''224'': 244\n    ''227'':\n      ''226'': 247\n    ''228'':\n      ''227'': 248\n    ''229'':\n      ''228'': 249\n    ''23'':\n      ''17'': 18\n    ''230'':\n      ''229'': 250\n    ''231'':\n      ''230'': 251\n    ''232'':\n      ''231'': 252\n    ''233'':\n      ''232'': 253\n    ''234'':\n      ''233'': 254\n    ''235'':\n      ''234'': 255\n    ''236'':\n      ''225'': 245\n    ''237'':\n      ''235'': 256\n    ''238'':\n      ''237'': 258\n    ''239'':\n      ''238'': 259\n    ''24'':\n      ''23'': 25\n    ''240'':\n      ''239'': 260\n    ''241'':\n      ''240'': 261\n    ''242'':\n      ''241'': 262\n    ''243'':\n      ''242'': 263\n    ''244'':\n      ''243'': 264\n    ''245'':\n      ''244'': 265\n    ''246'':\n      ''245'': 266\n    ''247'':\n      ''225'': 246\n      ''236'': 257\n    ''248'':\n      ''246'': 267\n    ''249'':\n      ''248'': 269\n    ''25'':\n      ''24'': 26\n    ''250'':\n      ''249'': 270\n    ''252'':\n      ''250'': 271\n    ''253'':\n      ''252'': 274\n    ''255'':\n      ''253'': 276\n    ''256'':\n      ''255'': 278\n    ''257'':\n      ''256'': 279\n    ''258'':\n      ''257'': 280\n    ''259'':\n      ''258'': 281\n    ''26'':\n      ''25'': 27\n    ''260'':\n      ''137'': 148\n    ''261'':\n      ''247'': 268\n    ''262'':\n      ''259'': 282\n    ''263'':\n      ''262'': 285\n    ''264'':\n      ''263'': 286\n    ''265'':\n      ''264'': 287\n    ''266'':\n      ''265'': 288\n    ''267'':\n      ''266'': 289\n    ''268'':\n      ''267'': 290\n    ''269'':\n      ''268'': 291\n    ''27'':\n      ''26'': 28\n    ''270'':\n      ''269'': 292\n    ''272'':\n      ''270'': 294\n    ''273'':\n      ''261'': 284\n    ''275'':\n      ''272'': 296\n    ''276'':\n      ''275'': 300\n    ''277'':\n      ''276'': 301\n    ''278'':\n      ''277'': 302\n    ''279'':\n      ''278'': 304\n    ''28'':\n      ''27'': 29\n    ''280'':\n      ''279'': 305\n    ''281'':\n      ''278'': 303\n      ''280'': 306\n    ''283'':\n      ''281'': 308\n    ''284'':\n      ''283'': 310\n    ''285'':\n      ''283'': 311\n    ''287'':\n      ''284'': 312\n      ''285'': 313\n    ''288'':\n      ''273'': 298\n    ''289'':\n      ''287'': 316\n    ''29'':\n      ''28'': 30\n    ''290'':\n      ''289'': 318\n    ''291'':\n      ''290'': 319\n    ''292'':\n      ''291'': 320\n    ''294'':\n      ''292'': 321\n    ''295'':\n      ''294'': 324\n    ''296'':\n      ''295'': 325\n    ''297'':\n      ''296'': 326\n    ''299'':\n      ''297'': 327\n    ''3'':\n      ''971'': 1051\n    ''30'':\n      ''29'': 31\n    ''300'':\n      ''299'': 330\n    ''301'':\n      ''288'': 317\n    ''302'':\n      ''300'': 331\n    ''303'':\n      ''302'': 333\n    ''304'':\n      ''303'': 334\n    ''305'':\n      ''304'': 335\n    ''306'':\n      ''305'': 337\n    ''308'':\n      ''305'': 1202\n      ''306'': 338\n    ''309'':\n      ''308'': 341\n    ''31'':\n      ''3'': 3\n    ''310'':\n      ''309'': 342\n    ''311'':\n      ''310'': 343\n    ''312'':\n      ''311'': 344\n    ''313'':\n      ''301'': 332\n    ''314'':\n      ''312'': 345\n    ''315'':\n      ''314'': 347\n    ''316'':\n      ''315'': 348\n    ''317'':\n      ''316'': 349\n    ''318'':\n      ''317'': 350\n    ''319'':\n      ''318'': 351\n    ''320'':\n      ''319'': 352\n    ''321'':\n      ''320'': 353\n    ''322'':\n      ''321'': 354\n    ''323'':\n      ''322'': 355\n    ''324'':\n      ''313'': 346\n    ''326'':\n      ''323'': 357\n    ''327'':\n      ''326'': 360\n    ''328'':\n      ''327'': 361\n    ''329'':\n      ''328'': 362\n    ''33'':\n      ''30'': 33\n    ''330'':\n      ''329'': 363\n    ''331'':\n      ''330'': 364\n    ''332'':\n      ''331'': 365\n    ''333'':\n      ''332'': 366\n    ''334'':\n      ''333'': 367\n    ''335'':\n      ''334'': 368\n    ''336'':\n      ''324'': 358\n    ''337'':\n      ''335'': 369\n    ''339'':\n      ''337'': 372\n    ''34'':\n      ''33'': 36\n    ''340'':\n      ''339'': 374\n    ''341'':\n      ''340'': 375\n    ''342'':\n      ''341'': 376\n    ''343'':\n      ''342'': 377\n    ''344'':\n      ''343'': 378\n    ''345'':\n      ''344'': 379\n    ''346'':\n      ''344'': 380\n      ''345'': 381\n    ''347'':\n      ''346'': 382\n    ''348'':\n      ''336'': 370\n    ''349'':\n      ''347'': 383\n    ''35'':\n      ''34'': 37\n    ''350'':\n      ''347'': 384\n    ''351'':\n      ''349'': 386\n      ''350'': 387\n    ''352'':\n      ''351'': 388\n    ''353'':\n      ''352'': 389\n    ''354'':\n      ''353'': 390\n    ''355'':\n      ''354'': 391\n    ''356'':\n      ''355'': 392\n    ''357'':\n      ''356'': 393\n    ''358'':\n      ''357'': 394\n    ''359'':\n      ''358'': 395\n    ''36'':\n      ''35'': 38\n    ''360'':\n      ''348'': 385\n    ''361'':\n      ''359'': 396\n    ''362'':\n      ''361'': 399\n    ''363'':\n      ''362'': 400\n    ''364'':\n      ''362'': 401\n    ''365'':\n      ''363'': 402\n      ''364'': 403\n    ''366'':\n      ''365'': 404\n    ''368'':\n      ''366'': 406\n    ''369'':\n      ''368'': 408\n    ''37'':\n      ''36'': 39\n    ''370'':\n      ''369'': 409\n    ''371'':\n      ''370'': 410\n    ''372'':\n      ''371'': 411\n    ''374'':\n      ''360'': 397\n    ''375'':\n      ''372'': 412\n    ''376'':\n      ''375'': 415\n    ''377'':\n      ''376'': 416\n    ''378'':\n      ''377'': 417\n    ''379'':\n      ''378'': 418\n    ''38'':\n      ''37'': 40\n    ''380'':\n      ''379'': 419\n    ''381'':\n      ''380'': 420\n    ''382'':\n      ''381'': 421\n    ''383'':\n      ''382'': 422\n    ''384'':\n      ''383'': 423\n    ''385'':\n      ''137'': 147\n      ''260'': 283\n    ''386'':\n      ''374'': 414\n    ''387'':\n      ''384'': 424\n    ''388'':\n      ''387'': 427\n    ''389'':\n      ''388'': 428\n    ''39'':\n      ''38'': 41\n    ''390'':\n      ''389'': 429\n    ''391'':\n      ''390'': 430\n    ''392'':\n      ''391'': 431\n    ''393'':\n      ''392'': 432\n    ''394'':\n      ''392'': 433\n    ''395'':\n      ''393'': 434\n      ''394'': 435\n    ''396'':\n      ''395'': 436\n    ''397'':\n      ''396'': 437\n    ''398'':\n      ''386'': 426\n    ''399'':\n      ''397'': 438\n    ''4'':\n      ''1084'': 1179\n    ''40'':\n      ''39'': 42\n    ''400'':\n      ''399'': 440\n    ''401'':\n      ''400'': 441\n    ''403'':\n      ''401'': 442\n    ''404'':\n      ''403'': 445\n    ''405'':\n      ''404'': 446\n    ''406'':\n      ''405'': 447\n    ''408'':\n      ''406'': 449\n    ''41'':\n      ''39'': 43\n      ''40'': 44\n    ''410'':\n      ''408'': 1235\n    ''411'':\n      ''410'': 454\n    ''412'':\n      ''398'': 439\n    ''413'':\n      ''411'': 455\n    ''414'':\n      ''413'': 457\n    ''415'':\n      ''414'': 458\n    ''416'':\n      ''415'': 459\n    ''417'':\n      ''416'': 460\n    ''418'':\n      ''417'': 461\n    ''419'':\n      ''418'': 462\n    ''42'':\n      ''41'': 45\n    ''420'':\n      ''419'': 463\n    ''421'':\n      ''420'': 464\n    ''422'':\n      ''421'': 465\n    ''423'':\n      ''412'': 456\n    ''424'':\n      ''422'': 466\n    ''425'':\n      ''424'': 468\n    ''426'':\n      ''425'': 469\n    ''427'':\n      ''426'': 470\n    ''428'':\n      ''427'': 471\n    ''429'':\n      ''428'': 472\n    ''43'':\n      ''31'': 34\n    ''430'':\n      ''429'': 473\n    ''431'':\n      ''430'': 474\n    ''432'':\n      ''431'': 475\n    ''433'':\n      ''432'': 476\n    ''434'':\n      ''423'': 467\n    ''435'':\n      ''433'': 477\n    ''436'':\n      ''435'': 479\n    ''437'':\n      ''436'': 480\n    ''438'':\n      ''437'': 481\n    ''439'':\n      ''438'': 482\n    ''44'':\n      ''42'': 46\n    ''440'':\n      ''439'': 483\n    ''441'':\n      ''440'': 484\n    ''442'':\n      ''441'': 485\n    ''443'':\n      ''442'': 486\n    ''444'':\n      ''443'': 487\n    ''445'':\n      ''434'': 478\n    ''446'':\n      ''444'': 488\n    ''447'':\n      ''446'': 490\n    ''448'':\n      ''447'': 491\n    ''449'':\n      ''448'': 492\n    ''45'':\n      ''44'': 48\n    ''450'':\n      ''449'': 493\n    ''451'':\n      ''450'': 494\n    ''452'':\n      ''451'': 495\n    ''453'':\n      ''452'': 496\n    ''454'':\n      ''453'': 497\n    ''455'':\n      ''454'': 498\n    ''456'':\n      ''454'': 499\n    ''457'':\n      ''445'': 489\n    ''458'':\n      ''455'': 500\n      ''456'': 501\n    ''459'':\n      ''458'': 503\n    ''46'':\n      ''45'': 49\n    ''460'':\n      ''459'': 504\n    ''461'':\n      ''460'': 505\n    ''462'':\n      ''461'': 506\n    ''463'':\n      ''462'': 507\n    ''464'':\n      ''463'': 508\n    ''465'':\n      ''464'': 509\n    ''466'':\n      ''465'': 510\n    ''467'':\n      ''466'': 511\n    ''468'':\n      ''457'': 502\n    ''469'':\n      ''467'': 512\n    ''47'':\n      ''46'': 50\n    ''470'':\n      ''469'': 514\n    ''471'':\n      ''470'': 515\n    ''472'':\n      ''471'': 516\n    ''473'':\n      ''472'': 517\n    ''474'':\n      ''473'': 518\n    ''475'':\n      ''474'': 519\n    ''476'':\n      ''475'': 520\n    ''477'':\n      ''476'': 521\n    ''478'':\n      ''477'': 522\n    ''479'':\n      ''468'': 513\n    ''48'':\n      ''47'': 51\n    ''480'':\n      ''478'': 523\n    ''481'':\n      ''480'': 525\n    ''482'':\n      ''481'': 526\n    ''483'':\n      ''482'': 527\n    ''484'':\n      ''483'': 528\n    ''485'':\n      ''484'': 529\n    ''486'':\n      ''485'': 530\n    ''487'':\n      ''486'': 531\n    ''488'':\n      ''487'': 532\n    ''489'':\n      ''488'': 533\n    ''49'':\n      ''48'': 52\n    ''490'':\n      ''479'': 524\n    ''491'':\n      ''489'': 534\n    ''492'':\n      ''491'': 536\n    ''493'':\n      ''492'': 537\n    ''496'':\n      ''493'': 539\n    ''497'':\n      ''493'': 538\n    ''498'':\n      ''496'': 544\n      ''497'': 545\n    ''499'':\n      ''498'': 546\n    ''5'':\n      ''1094'': 1189\n    ''50'':\n      ''49'': 53\n    ''500'':\n      ''499'': 547\n    ''501'':\n      ''500'': 548\n    ''502'':\n      ''500'': 549\n    ''503'':\n      ''501'': 550\n      ''502'': 551\n    ''504'':\n      ''503'': 552\n    ''505'':\n      ''385'': 425\n    ''506'':\n      ''490'': 535\n    ''508'':\n      ''503'': 553\n      ''504'': 555\n    ''509'':\n      ''508'': 559\n    ''51'':\n      ''50'': 54\n    ''510'':\n      ''509'': 560\n    ''511'':\n      ''510'': 561\n    ''512'':\n      ''511'': 562\n    ''513'':\n      ''512'': 563\n    ''514'':\n      ''513'': 564\n    ''515'':\n      ''514'': 565\n    ''516'':\n      ''515'': 566\n    ''517'':\n      ''516'': 567\n    ''518'':\n      ''506'': 557\n    ''519'':\n      ''517'': 568\n    ''52'':\n      ''51'': 55\n    ''520'':\n      ''519'': 570\n    ''521'':\n      ''520'': 571\n    ''522'':\n      ''521'': 572\n    ''523'':\n      ''522'': 573\n    ''525'':\n      ''523'': 574\n    ''526'':\n      ''525'': 577\n    ''527'':\n      ''526'': 578\n    ''528'':\n      ''527'': 579\n    ''529'':\n      ''528'': 580\n    ''53'':\n      ''52'': 56\n    ''530'':\n      ''518'': 569\n    ''531'':\n      ''529'': 581\n    ''532'':\n      ''531'': 583\n    ''533'':\n      ''532'': 584\n    ''534'':\n      ''533'': 585\n    ''535'':\n      ''534'': 586\n    ''536'':\n      ''535'': 587\n    ''537'':\n      ''536'': 588\n    ''538'':\n      ''537'': 589\n    ''539'':\n      ''538'': 590\n    ''54'':\n      ''43'': 47\n    ''540'':\n      ''539'': 591\n    ''541'':\n      ''530'': 582\n    ''542'':\n      ''540'': 592\n    ''543'':\n      ''542'': 594\n    ''544'':\n      ''543'': 595\n    ''545'':\n      ''544'': 596\n    ''546'':\n      ''545'': 597\n    ''547'':\n      ''546'': 598\n    ''548'':\n      ''547'': 599\n    ''549'':\n      ''548'': 600\n    ''55'':\n      ''53'': 57\n    ''550'':\n      ''549'': 601\n    ''551'':\n      ''550'': 602\n    ''552'':\n      ''541'': 593\n    ''553'':\n      ''551'': 603\n    ''554'':\n      ''553'': 605\n    ''555'':\n      ''554'': 606\n    ''556'':\n      ''555'': 607\n    ''557'':\n      ''556'': 608\n    ''558'':\n      ''557'': 609\n    ''559'':\n      ''558'': 610\n    ''56'':\n      ''55'': 59\n    ''560'':\n      ''559'': 611\n    ''561'':\n      ''560'': 612\n    ''562'':\n      ''561'': 613\n    ''563'':\n      ''552'': 604\n    ''564'':\n      ''562'': 614\n    ''565'':\n      ''564'': 616\n    ''566'':\n      ''565'': 617\n    ''567'':\n      ''566'': 618\n    ''568'':\n      ''567'': 619\n    ''569'':\n      ''568'': 620\n    ''57'':\n      ''56'': 60\n    ''570'':\n      ''569'': 621\n    ''571'':\n      ''569'': 622\n    ''572'':\n      ''570'': 623\n      ''571'': 624\n    ''574'':\n      ''572'': 626\n    ''575'':\n      ''574'': 628\n    ''576'':\n      ''563'': 615\n    ''577'':\n      ''575'': 629\n    ''578'':\n      ''577'': 631\n    ''579'':\n      ''578'': 632\n    ''58'':\n      ''57'': 61\n    ''580'':\n      ''579'': 633\n    ''581'':\n      ''580'': 634\n    ''582'':\n      ''581'': 635\n    ''583'':\n      ''582'': 636\n    ''584'':\n      ''583'': 637\n    ''585'':\n      ''584'': 638\n    ''586'':\n      ''585'': 639\n    ''587'':\n      ''576'': 630\n    ''588'':\n      ''586'': 640\n    ''589'':\n      ''588'': 642\n    ''59'':\n      ''58'': 62\n    ''590'':\n      ''589'': 643\n    ''591'':\n      ''590'': 644\n    ''592'':\n      ''591'': 645\n    ''593'':\n      ''592'': 646\n    ''594'':\n      ''593'': 647\n    ''595'':\n      ''594'': 648\n    ''596'':\n      ''595'': 649\n    ''597'':\n      ''596'': 650\n    ''598'':\n      ''587'': 641\n    ''599'':\n      ''597'': 651\n    ''6'':\n      ''5'': 5\n    ''60'':\n      ''59'': 63\n    ''600'':\n      ''599'': 653\n    ''601'':\n      ''600'': 654\n    ''602'':\n      ''601'': 655\n    ''603'':\n      ''602'': 656\n    ''604'':\n      ''603'': 657\n    ''605'':\n      ''604'': 659\n    ''606'':\n      ''604'': 658\n    ''607'':\n      ''606'': 661\n    ''608'':\n      ''607'': 662\n    ''609'':\n      ''608'': 663\n    ''610'':\n      ''598'': 652\n    ''611'':\n      ''609'': 664\n    ''612'':\n      ''611'': 666\n    ''613'':\n      ''612'': 667\n    ''614'':\n      ''613'': 668\n    ''615'':\n      ''614'': 669\n    ''616'':\n      ''615'': 670\n    ''617'':\n      ''616'': 671\n    ''619'':\n      ''617'': 672\n    ''62'':\n      ''60'': 65\n    ''620'':\n      ''619'': 675\n    ''621'':\n      ''620'': 676\n    ''622'':\n      ''505'': 556\n    ''623'':\n      ''610'': 665\n    ''624'':\n      ''621'': 677\n    ''625'':\n      ''624'': 680\n    ''626'':\n      ''625'': 681\n    ''627'':\n      ''626'': 682\n    ''628'':\n      ''627'': 683\n    ''629'':\n      ''628'': 684\n    ''63'':\n      ''62'': 67\n    ''630'':\n      ''629'': 685\n    ''631'':\n      ''630'': 686\n    ''632'':\n      ''631'': 687\n    ''633'':\n      ''632'': 688\n    ''634'':\n      ''623'': 679\n    ''635'':\n      ''633'': 689\n    ''636'':\n      ''635'': 692\n    ''637'':\n      ''636'': 693\n    ''638'':\n      ''637'': 694\n    ''639'':\n      ''638'': 695\n    ''64'':\n      ''63'': 68\n    ''640'':\n      ''639'': 696\n    ''641'':\n      ''639'': 697\n    ''642'':\n      ''640'': 698\n      ''641'': 699\n    ''644'':\n      ''642'': 701\n    ''645'':\n      ''644'': 703\n    ''646'':\n      ''645'': 704\n    ''647'':\n      ''634'': 690\n    ''648'':\n      ''646'': 705\n    ''649'':\n      ''648'': 707\n    ''65'':\n      ''64'': 69\n    ''650'':\n      ''649'': 708\n    ''651'':\n      ''650'': 709\n    ''652'':\n      ''651'': 710\n    ''653'':\n      ''652'': 711\n    ''654'':\n      ''653'': 712\n    ''655'':\n      ''654'': 713\n    ''656'':\n      ''655'': 714\n    ''657'':\n      ''656'': 715\n    ''658'':\n      ''647'': 706\n    ''659'':\n      ''657'': 716\n    ''66'':\n      ''54'': 58\n    ''660'':\n      ''659'': 718\n    ''661'':\n      ''660'': 720\n    ''662'':\n      ''660'': 719\n    ''663'':\n      ''661'': 721\n      ''662'': 722\n    ''664'':\n      ''663'': 723\n    ''665'':\n      ''663'': 724\n    ''666'':\n      ''664'': 725\n      ''665'': 726\n    ''668'':\n      ''666'': 728\n    ''669'':\n      ''668'': 730\n    ''67'':\n      ''65'': 70\n    ''670'':\n      ''669'': 731\n    ''671'':\n      ''670'': 732\n    ''672'':\n      ''634'': 691\n      ''658'': 717\n    ''673'':\n      ''671'': 733\n    ''674'':\n      ''673'': 735\n    ''675'':\n      ''674'': 736\n    ''676'':\n      ''675'': 737\n    ''677'':\n      ''676'': 738\n    ''678'':\n      ''677'': 739\n    ''679'':\n      ''678'': 740\n    ''68'':\n      ''67'': 72\n    ''680'':\n      ''679'': 741\n    ''681'':\n      ''680'': 742\n    ''682'':\n      ''681'': 743\n    ''683'':\n      ''672'': 734\n    ''684'':\n      ''682'': 744\n    ''685'':\n      ''684'': 746\n    ''686'':\n      ''685'': 747\n    ''687'':\n      ''686'': 748\n    ''688'':\n      ''687'': 749\n    ''689'':\n      ''688'': 750\n    ''690'':\n      ''689'': 751\n    ''691'':\n      ''690'': 752\n    ''692'':\n      ''691'': 753\n    ''693'':\n      ''692'': 754\n    ''694'':\n      ''683'': 745\n    ''695'':\n      ''693'': 755\n    ''696'':\n      ''695'': 757\n    ''697'':\n      ''696'': 758\n    ''698'':\n      ''697'': 759\n    ''699'':\n      ''698'': 760\n    ''7'':\n      ''6'': 6\n    ''70'':\n      ''68'': 74\n    ''700'':\n      ''699'': 761\n    ''701'':\n      ''700'': 762\n    ''702'':\n      ''701'': 763\n    ''703'':\n      ''702'': 764\n    ''704'':\n      ''703'': 765\n    ''705'':\n      ''694'': 756\n    ''706'':\n      ''704'': 766\n    ''707'':\n      ''706'': 768\n    ''708'':\n      ''707'': 769\n    ''709'':\n      ''708'': 770\n    ''71'':\n      ''70'': 76\n    ''710'':\n      ''709'': 771\n    ''711'':\n      ''710'': 772\n    ''712'':\n      ''711'': 773\n    ''713'':\n      ''712'': 774\n    ''714'':\n      ''713'': 775\n    ''715'':\n      ''714'': 776\n    ''716'':\n      ''705'': 767\n    ''717'':\n      ''715'': 777\n    ''718'':\n      ''717'': 779\n    ''719'':\n      ''718'': 780\n    ''72'':\n      ''71'': 77\n    ''720'':\n      ''719'': 781\n    ''721'':\n      ''720'': 782\n    ''723'':\n      ''721'': 784\n    ''724'':\n      ''723'': 786\n    ''725'':\n      ''724'': 787\n    ''726'':\n      ''725'': 788\n    ''727'':\n      ''726'': 789\n    ''728'':\n      ''716'': 778\n    ''729'':\n      ''727'': 790\n    ''73'':\n      ''72'': 78\n    ''730'':\n      ''729'': 792\n    ''731'':\n      ''730'': 793\n    ''732'':\n      ''731'': 794\n    ''733'':\n      ''732'': 795\n    ''734'':\n      ''733'': 796\n    ''735'':\n      ''734'': 797\n    ''736'':\n      ''735'': 798\n    ''737'':\n      ''736'': 799\n    ''738'':\n      ''737'': 800\n    ''739'':\n      ''622'': 678\n    ''74'':\n      ''73'': 79\n    ''740'':\n      ''728'': 791\n    ''741'':\n      ''738'': 801\n    ''742'':\n      ''741'': 804\n    ''743'':\n      ''742'': 805\n    ''744'':\n      ''743'': 806\n    ''745'':\n      ''744'': 807\n    ''746'':\n      ''745'': 808\n    ''747'':\n      ''746'': 809\n    ''748'':\n      ''747'': 810\n    ''749'':\n      ''748'': 811\n    ''75'':\n      ''74'': 80\n    ''750'':\n      ''749'': 812\n    ''751'':\n      ''740'': 803\n    ''752'':\n      ''750'': 813\n    ''753'':\n      ''752'': 815\n    ''754'':\n      ''753'': 816\n    ''755'':\n      ''754'': 817\n    ''756'':\n      ''755'': 818\n    ''757'':\n      ''756'': 819\n    ''758'':\n      ''757'': 820\n    ''759'':\n      ''758'': 821\n    ''76'':\n      ''75'': 81\n    ''760'':\n      ''759'': 822\n    ''761'':\n      ''760'': 823\n    ''762'':\n      ''751'': 814\n    ''763'':\n      ''761'': 824\n    ''764'':\n      ''763'': 827\n    ''765'':\n      ''764'': 828\n    ''766'':\n      ''765'': 829\n    ''767'':\n      ''766'': 830\n    ''768'':\n      ''767'': 831\n    ''769'':\n      ''768'': 832\n    ''77'':\n      ''76'': 82\n    ''770'':\n      ''769'': 833\n    ''771'':\n      ''770'': 834\n    ''772'':\n      ''771'': 835\n    ''774'':\n      ''762'': 826\n    ''775'':\n      ''772'': 836\n    ''776'':\n      ''775'': 839\n    ''777'':\n      ''776'': 840\n    ''778'':\n      ''777'': 841\n    ''779'':\n      ''778'': 842\n    ''78'':\n      ''66'': 71\n    ''780'':\n      ''779'': 843\n    ''781'':\n      ''780'': 844\n    ''783'':\n      ''781'': 845\n    ''784'':\n      ''783'': 848\n    ''785'':\n      ''784'': 849\n    ''786'':\n      ''774'': 838\n    ''787'':\n      ''785'': 850\n    ''788'':\n      ''787'': 852\n    ''789'':\n      ''788'': 855\n    ''79'':\n      ''77'': 83\n    ''790'':\n      ''789'': 856\n    ''791'':\n      ''790'': 857\n    ''792'':\n      ''788'': 854\n      ''791'': 858\n    ''793'':\n      ''792'': 859\n    ''794'':\n      ''793'': 860\n    ''795'':\n      ''788'': 853\n      ''794'': 861\n    ''796'':\n      ''795'': 862\n    ''797'':\n      ''786'': 851\n    ''798'':\n      ''796'': 863\n    ''799'':\n      ''798'': 866\n    ''80'':\n      ''79'': 85\n    ''800'':\n      ''799'': 867\n    ''801'':\n      ''800'': 868\n    ''802'':\n      ''801'': 869\n    ''803'':\n      ''802'': 870\n    ''804'':\n      ''803'': 871\n    ''805'':\n      ''804'': 872\n    ''806'':\n      ''804'': 873\n      ''805'': 874\n    ''807'':\n      ''806'': 875\n    ''809'':\n      ''797'': 865\n    ''81'':\n      ''80'': 86\n    ''810'':\n      ''807'': 876\n    ''811'':\n      ''810'': 879\n    ''813'':\n      ''811'': 880\n    ''814'':\n      ''813'': 1247\n    ''815'':\n      ''813'': 883\n      ''814'': 884\n    ''816'':\n      ''815'': 885\n    ''817'':\n      ''816'': 886\n    ''818'':\n      ''817'': 887\n    ''819'':\n      ''818'': 888\n    ''82'':\n      ''81'': 87\n    ''820'':\n      ''819'': 889\n    ''821'':\n      ''809'': 878\n    ''822'':\n      ''820'': 890\n    ''823'':\n      ''822'': 892\n    ''824'':\n      ''823'': 893\n    ''825'':\n      ''824'': 894\n    ''826'':\n      ''825'': 895\n    ''827'':\n      ''826'': 896\n    ''828'':\n      ''827'': 897\n    ''829'':\n      ''828'': 899\n    ''83'':\n      ''82'': 88\n    ''830'':\n      ''828'': 900\n    ''831'':\n      ''828'': 898\n    ''832'':\n      ''829'': 901\n      ''830'': 902\n      ''831'': 903\n    ''833'':\n      ''832'': 904\n    ''834'':\n      ''821'': 891\n    ''835'':\n      ''833'': 905\n    ''836'':\n      ''833'': 906\n    ''837'':\n      ''835'': 908\n      ''836'': 909\n    ''838'':\n      ''837'': 910\n    ''839'':\n      ''838'': 911\n    ''840'':\n      ''839'': 912\n    ''841'':\n      ''840'': 913\n    ''842'':\n      ''841'': 914\n    ''843'':\n      ''842'': 915\n    ''844'':\n      ''843'': 916\n    ''845'':\n      ''844'': 917\n    ''846'':\n      ''834'': 907\n    ''847'':\n      ''845'': 918\n    ''848'':\n      ''847'': 920\n    ''849'':\n      ''848'': 921\n    ''850'':\n      ''849'': 922\n    ''851'':\n      ''850'': 923\n    ''852'':\n      ''851'': 924\n    ''853'':\n      ''852'': 925\n    ''854'':\n      ''853'': 926\n    ''855'':\n      ''854'': 927\n    ''856'':\n      ''855'': 928\n    ''857'':\n      ''739'': 802\n    ''858'':\n      ''846'': 919\n    ''859'':\n      ''856'': 929\n    ''86'':\n      ''83'': 90\n    ''860'':\n      ''859'': 932\n    ''861'':\n      ''860'': 933\n    ''863'':\n      ''860'': 934\n      ''861'': 936\n    ''864'':\n      ''863'': 938\n    ''865'':\n      ''864'': 939\n    ''866'':\n      ''865'': 940\n    ''867'':\n      ''866'': 941\n    ''868'':\n      ''867'': 942\n    ''869'':\n      ''868'': 943\n    ''87'':\n      ''86'': 94\n    ''870'':\n      ''858'': 931\n    ''871'':\n      ''869'': 944\n    ''872'':\n      ''871'': 946\n    ''873'':\n      ''872'': 947\n    ''874'':\n      ''873'': 948\n    ''875'':\n      ''874'': 949\n    ''877'':\n      ''875'': 950\n    ''878'':\n      ''877'': 953\n    ''879'':\n      ''878'': 954\n    ''88'':\n      ''87'': 95\n    ''880'':\n      ''879'': 955\n    ''881'':\n      ''880'': 956\n    ''882'':\n      ''870'': 945\n    ''883'':\n      ''881'': 957\n    ''884'':\n      ''883'': 959\n    ''885'':\n      ''884'': 960\n    ''886'':\n      ''885'': 961\n    ''887'':\n      ''886'': 962\n    ''888'':\n      ''887'': 963\n    ''889'':\n      ''888'': 964\n    ''89'':\n      ''88'': 96\n    ''890'':\n      ''889'': 965\n    ''891'':\n      ''890'': 966\n    ''892'':\n      ''891'': 967\n    ''893'':\n      ''882'': 958\n    ''894'':\n      ''892'': 968\n    ''895'':\n      ''894'': 970\n    ''896'':\n      ''895'': 971\n    ''897'':\n      ''896'': 972\n    ''898'':\n      ''897'': 973\n    ''899'':\n      ''898'': 974\n    ''9'':\n      ''7'': 8\n    ''90'':\n      ''89'': 97\n    ''900'':\n      ''899'': 975\n    ''902'':\n      ''900'': 976\n    ''903'':\n      ''902'': 979\n    ''904'':\n      ''903'': 980\n    ''905'':\n      ''893'': 969\n    ''906'':\n      ''904'': 981\n    ''907'':\n      ''906'': 983\n    ''908'':\n      ''907'': 984\n    ''909'':\n      ''908'': 985\n    ''91'':\n      ''78'': 84\n    ''910'':\n      ''909'': 986\n    ''911'':\n      ''910'': 987\n    ''912'':\n      ''911'': 988\n    ''913'':\n      ''912'': 989\n    ''914'':\n      ''913'': 990\n    ''915'':\n      ''914'': 991\n    ''916'':\n      ''905'': 982\n    ''917'':\n      ''915'': 992\n    ''918'':\n      ''917'': 994\n    ''919'':\n      ''918'': 995\n    ''92'':\n      ''90'': 98\n    ''920'':\n      ''919'': 996\n    ''921'':\n      ''920'': 998\n    ''922'':\n      ''921'': 999\n    ''923'':\n      ''922'': 1000\n    ''924'':\n      ''923'': 1001\n    ''925'':\n      ''924'': 1002\n    ''926'':\n      ''925'': 1003\n    ''927'':\n      ''916'': 993\n    ''928'':\n      ''926'': 1004\n    ''929'':\n      ''928'': 1006\n    ''93'':\n      ''92'': 100\n    ''930'':\n      ''929'': 1007\n    ''931'':\n      ''930'': 1008\n    ''932'':\n      ''931'': 1009\n    ''933'':\n      ''932'': 1010\n    ''934'':\n      ''933'': 1011\n    ''935'':\n      ''934'': 1012\n    ''936'':\n      ''935'': 1013\n    ''937'':\n      ''936'': 1014\n    ''938'':\n      ''927'': 1005\n    ''939'':\n      ''937'': 1015\n    ''94'':\n      ''93'': 101\n    ''940'':\n      ''939'': 1017\n    ''941'':\n      ''940'': 1018\n    ''942'':\n      ''941'': 1019\n    ''943'':\n      ''942'': 1020\n    ''944'':\n      ''943'': 1021\n    ''945'':\n      ''944'': 1022\n    ''946'':\n      ''945'': 1023\n    ''947'':\n      ''946'': 1024\n    ''948'':\n      ''947'': 1025\n    ''949'':\n      ''938'': 1016\n    ''95'':\n      ''94'': 102\n    ''950'':\n      ''948'': 1026\n    ''951'':\n      ''950'': 1028\n    ''952'':\n      ''951'': 1029\n    ''953'':\n      ''952'': 1030\n    ''954'':\n      ''953'': 1031\n    ''955'':\n      ''954'': 1032\n    ''956'':\n      ''955'': 1033\n    ''957'':\n      ''956'': 1034\n    ''958'':\n      ''957'': 1035\n    ''959'':\n      ''958'': 1036\n    ''96'':\n      ''95'': 103\n    ''960'':\n      ''949'': 1027\n    ''961'':\n      ''959'': 1037\n    ''962'':\n      ''961'': 1039\n    ''963'':\n      ''962'': 1040\n    ''964'':\n      ''963'': 1041\n    ''965'':\n      ''964'': 1042\n    ''966'':\n      ''965'': 1043\n    ''967'':\n      ''965'': 1044\n      ''966'': 1045\n    ''968'':\n      ''967'': 1047\n    ''969'':\n      ''968'': 1048\n    ''97'':\n      ''96'': 104\n    ''970'':\n      ''967'': 1046\n      ''969'': 1049\n    ''971'':\n      ''857'': 930\n    ''972'':\n      ''960'': 1038\n    ''973'':\n      ''970'': 1050\n    ''974'':\n      ''973'': 1055\n    ''975'':\n      ''974'': 1056\n    ''976'':\n      ''975'': 1057\n    ''977'':\n      ''976'': 1058\n    ''978'':\n      ''977'': 1059\n    ''979'':\n      ''978'': 1060\n    ''98'':\n      ''97'': 105\n    ''980'':\n      ''979'': 1061\n    ''981'':\n      ''920'': 997\n      ''980'': 1062\n    ''982'':\n      ''981'': 1063\n    ''984'':\n      ''972'': 1054\n    ''985'':\n      ''972'': 1052\n    ''986'':\n      ''982'': 1064\n    ''987'':\n      ''986'': 1068\n    ''988'':\n      ''987'': 1069\n    ''989'':\n      ''988'': 1070\n    ''99'':\n      ''98'': 106\n    ''990'':\n      ''989'': 1071\n    ''992'':\n      ''990'': 1073\n    ''993'':\n      ''992'': 1248\n    ''994'':\n      ''992'': 1075\n      ''993'': 1076\n    ''995'':\n      ''994'': 1077\n    ''996'':\n      ''995'': 1078\n    ''997'':\n      ''984'': 1066\n      ''985'': 1067\n    ''998'':\n      ''996'': 1079\n    ''999'':\n      ''998'': 1083\n  - *1\n","id":"B4405BA6-9504-11E1-93EE-8FC4A89F4671"}','Graph',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63E9CE2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"22,1","rank":"22","reading_lexemes":[],"text":"craindre"},"id":"B63E9CE2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62B07C2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"352,2","rank":"352","reading_lexemes":[],"text":"hommes"},"id":"B62B07C2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D6E1A6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"165,1","rank":"165","reading_lexemes":[],"text":"forêt"},"id":"B5D6E1A6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62CEE98-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"511,1","rank":"511","reading_lexemes":[],"text":"chaque"},"id":"B62CEE98-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5992690-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"665,2","rank":"665","reading_lexemes":[],"text":"n''est"},"id":"B5992690-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BF8C40-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"479,1","rank":"479","reading_lexemes":[],"text":"n''est"},"id":"B5BF8C40-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5ACC0EC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"685,2","rank":"685","reading_lexemes":[],"text":"n''enrichit"},"id":"B5ACC0EC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60E95E2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"473,1","rank":"473","reading_lexemes":[],"text":"compte"},"id":"B60E95E2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DDE726-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"847,2","rank":"847","reading_lexemes":[],"text":"un"},"id":"B5DDE726-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B520CF06-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"366,1","rank":"366","reading_lexemes":[],"text":"est"},"id":"B520CF06-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B74D8C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"694,2","rank":"694","reading_lexemes":[],"text":"un"},"id":"B5B74D8C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FFFF0A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"670,2","rank":"670","reading_lexemes":[],"text":"fait"},"id":"B5FFFF0A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B682C9DA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"182,1","rank":"182","reading_lexemes":[],"text":"proi"},"id":"B682C9DA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6515922-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"654,2","rank":"654","reading_lexemes":[],"text":"fuite"},"id":"B6515922-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B502B142-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"917,2","rank":"917","reading_lexemes":[],"text":"une"},"id":"B502B142-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5459322-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"25,1","rank":"25","reading_lexemes":[],"text":"vie"},"id":"B5459322-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5EF72B6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"350,1","rank":"350","reading_lexemes":[],"text":"Méprise"},"id":"B5EF72B6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E64CEA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"560,1","rank":"560","reading_lexemes":[],"text":"avoir"},"id":"B5E64CEA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52C5790-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"605,2","rank":"605","reading_lexemes":[],"text":"l''obscurité"},"id":"B52C5790-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B504FB14-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"626,2","rank":"626","reading_lexemes":[],"text":"marcher"},"id":"B504FB14-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60B1D2C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"265,1","rank":"265","reading_lexemes":[],"text":"suis"},"id":"B60B1D2C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C28B8E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"542,1","rank":"542","reading_lexemes":[],"text":"devenir"},"id":"B5C28B8E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6763A62-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"297,1","rank":"297","reading_lexemes":[],"text":"il"},"id":"B6763A62-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B581B1D6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"544,1","rank":"544","reading_lexemes":[],"text":"c''est-à-dire"},"id":"B581B1D6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50250B2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"299,1","rank":"299","reading_lexemes":[],"text":"a"},"id":"B50250B2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4E94838-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"405,1","rank":"405","reading_lexemes":[],"text":"et"},"id":"B4E94838-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59C6ECC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"108,1","rank":"108","reading_lexemes":[],"text":"son"},"id":"B59C6ECC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6145400-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"13,1","rank":"13","reading_lexemes":[],"text":"donc"},"id":"B6145400-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B512C4A6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"152,1","rank":"152","reading_lexemes":[],"text":"comme"},"id":"B512C4A6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B656D74E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"991,2","rank":"991","reading_lexemes":[],"text":"liberté"},"id":"B656D74E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5294C1C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"334,1","rank":"334","reading_lexemes":[],"text":"de"},"id":"B5294C1C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B589568E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"99,1","rank":"99","reading_lexemes":[],"text":"m''inspirent"},"id":"B589568E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5527006-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"485,1","rank":"485","reading_lexemes":[],"text":"désespoir"},"id":"B5527006-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5EBA6EA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"495,1","rank":"495","reading_lexemes":[],"text":"car"},"id":"B5EBA6EA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53E05C6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"212,1","rank":"212","reading_lexemes":[],"text":"m''emparer"},"id":"B53E05C6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A6384E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"715,2","rank":"715","reading_lexemes":[],"text":"trouve"},"id":"B5A6384E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D8106C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1001,2","rank":"1001","reading_lexemes":[],"text":"s''avise"},"id":"B5D8106C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59FD9E0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"138,1","rank":"138","reading_lexemes":[],"text":"humain"},"id":"B59FD9E0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B543450E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"256,1","rank":"256","reading_lexemes":[],"text":"prisonnier"},"id":"B543450E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B585188A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"38,1","rank":"38","reading_lexemes":[],"text":"heureux"},"id":"B585188A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6203626-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"820,2","rank":"820","reading_lexemes":[],"text":"que"},"id":"B6203626-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5599052-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"204,1","rank":"204","reading_lexemes":[],"text":"la"},"id":"B5599052-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52FBF02-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"349,2","rank":"349","reading_lexemes":[],"text":"solitude"},"id":"B52FBF02-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B533E96A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"437,1","rank":"437","reading_lexemes":[],"text":"nos"},"id":"B533E96A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B558111E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"950,2","rank":"950","reading_lexemes":[],"text":"qui"},"id":"B558111E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66EBA12-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"888,2","rank":"888","reading_lexemes":[],"text":"désire"},"id":"B66EBA12-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F1BC10-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"989,2","rank":"989","reading_lexemes":[],"text":"que"},"id":"B5F1BC10-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58396CC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"314,1","rank":"314","reading_lexemes":[],"text":"ma"},"id":"B58396CC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A4BA96-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"806,2","rank":"806","reading_lexemes":[],"text":"avec"},"id":"B5A4BA96-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6024954-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1013,4","rank":"1013","reading_lexemes":[],"text":"être humain"},"id":"B6024954-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6126A28-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"261,1","rank":"261","reading_lexemes":[],"text":"la"},"id":"B6126A28-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B657F9EE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"2,2","rank":"2","reading_lexemes":[],"text":"rassassier"},"id":"B657F9EE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65F46FE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"681,2","rank":"681","reading_lexemes":[],"text":"quelle"},"id":"B65F46FE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B605B7CE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"876,2","rank":"876","reading_lexemes":[],"text":"plaisir"},"id":"B605B7CE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6482C9E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"95,1","rank":"95","reading_lexemes":[],"text":"des"},"id":"B6482C9E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56F888A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"564,1","rank":"564","reading_lexemes":[],"text":"le"},"id":"B56F888A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6157998-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"439,1","rank":"439","reading_lexemes":[],"text":"tout"},"id":"B6157998-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C77BEE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"227,1","rank":"227","reading_lexemes":[],"text":"aimée"},"id":"B5C77BEE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A15AEA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"777,2","rank":"777","reading_lexemes":[],"text":"de"},"id":"B5A15AEA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F6F226-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"281,1","rank":"281","reading_lexemes":[],"text":"façon"},"id":"B4F6F226-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6414956-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"969,3","rank":"969","reading_lexemes":[],"text":"naies"},"id":"B6414956-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CCE868-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1002,2","rank":"1002","reading_lexemes":[],"text":"que"},"id":"B5CCE868-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53FE530-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"860,2","rank":"860","reading_lexemes":[],"text":"richesse"},"id":"B53FE530-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51EEB82-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"531,1","rank":"531","reading_lexemes":[],"text":"elle"},"id":"B51EEB82-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B522B474-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"640,2","rank":"640","reading_lexemes":[],"text":"lance"},"id":"B522B474-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58CBEBE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"16,1","rank":"16","reading_lexemes":[],"text":"car"},"id":"B58CBEBE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6657E34-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"347,1","rank":"347","reading_lexemes":[],"text":"suis"},"id":"B6657E34-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FA479A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"327,1","rank":"327","reading_lexemes":[],"text":"ton"},"id":"B5FA479A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F62F9E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"856,2","rank":"856","reading_lexemes":[],"text":"celui-ci"},"id":"B4F62F9E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B615DC30-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"931,2","rank":"931","reading_lexemes":[],"text":"me"},"id":"B615DC30-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B560B60C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"573,1","rank":"573","reading_lexemes":[],"text":"tous"},"id":"B560B60C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53F23D4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"713,2","rank":"713","reading_lexemes":[],"text":"Elle"},"id":"B53F23D4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B625B006-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"563,1","rank":"563","reading_lexemes":[],"text":"de"},"id":"B625B006-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53B5D62-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"308,1","rank":"308","reading_lexemes":[],"text":"y"},"id":"B53B5D62-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F9E6A6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"178,1","rank":"178","reading_lexemes":[],"text":"temps"},"id":"B5F9E6A6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62B6906-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"410,1","rank":"410","reading_lexemes":[],"text":"dois"},"id":"B62B6906-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5AA7EEA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"935,2","rank":"935","reading_lexemes":[],"text":"ma"},"id":"B5AA7EEA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6890AFC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"527,1","rank":"527","reading_lexemes":[],"text":"forme"},"id":"B6890AFC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6420D5A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"964,2","rank":"964","reading_lexemes":[],"text":"ce"},"id":"B6420D5A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FF3B4C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"701,2","rank":"701","reading_lexemes":[],"text":"exposée"},"id":"B5FF3B4C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51A5E46-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"645,2","rank":"645","reading_lexemes":[],"text":"le"},"id":"B51A5E46-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B586998A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"929,2","rank":"929","reading_lexemes":[],"text":"consolation"},"id":"B586998A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B500CBDE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"611,3","rank":"611","reading_lexemes":[],"text":"nuits"},"id":"B500CBDE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E28114-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"32,1","rank":"32","reading_lexemes":[],"text":"une"},"id":"B5E28114-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BB6BE2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"65,1","rank":"65","reading_lexemes":[],"text":"la"},"id":"B5BB6BE2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60B7DA8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"933,2","rank":"933","reading_lexemes":[],"text":"simplement"},"id":"B60B7DA8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D587D0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"je","reading_b":"Je","scope":"global","type":"orthographic"},"id":"B4D587D0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62D518A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"547,1","rank":"547","reading_lexemes":[],"text":"homme"},"id":"B62D518A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B569677A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"926,2","rank":"926","reading_lexemes":[],"text":"mais"},"id":"B569677A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67886B4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"521,1","rank":"521","reading_lexemes":[],"text":"n''a"},"id":"B67886B4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5EC09D2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"942,2","rank":"942","reading_lexemes":[],"text":"peux"},"id":"B5EC09D2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D78E9A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"rationnaliste","reading_b":"rationaliste","scope":"global","type":"spelling"},"id":"B4D78E9A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53C229C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"343,1","rank":"343","reading_lexemes":[],"text":"vivent"},"id":"B53C229C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5672870-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"691,2","rank":"691","reading_lexemes":[],"text":"rester"},"id":"B5672870-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B566C7D6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"895,2","rank":"895","reading_lexemes":[],"text":"la"},"id":"B566C7D6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B40F4386-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Graph","data":"--- &1 !!perl/array:Graph\n- 0\n- 2286\n- !!perl/array:Graph::AdjacencyMap::Light\n  - 1095\n  - 152\n  - 1\n  - ''0'': ''#START#''\n    ''1'': ''#END#''\n    ''10'': 1004,2\n    ''100'': 168,1\n    ''1000'': 922,2\n    ''1001'': 923,2\n    ''1002'': 924,2\n    ''1003'': 925,1\n    ''1004'': 925,3\n    ''1005'': 926,2\n    ''1006'': 927,1\n    ''1007'': 927,3\n    ''1008'': 928,2\n    ''1009'': 929,2\n    ''101'': 169,1\n    ''1010'': 93,1\n    ''1011'': 93,2\n    ''1012'': 93,3\n    ''1013'': 930,2\n    ''1014'': 931,2\n    ''1015'': 932,2\n    ''1016'': 933,2\n    ''1017'': 934,2\n    ''1018'': 935,2\n    ''1019'': 936,2\n    ''102'': 17,1\n    ''1020'': 937,2\n    ''1021'': 938,2\n    ''1022'': 939,1\n    ''1023'': 94,1\n    ''1024'': 940,2\n    ''1025'': 941,2\n    ''1026'': 942,2\n    ''1027'': 943,1\n    ''1028'': 944,2\n    ''1029'': 945,2\n    ''103'': 170,1\n    ''1030'': 946,2\n    ''1031'': 947,1\n    ''1032'': 948,2\n    ''1033'': 949,2\n    ''1034'': 95,1\n    ''1035'': 950,2\n    ''1036'': 951,2\n    ''1037'': 952,2\n    ''1038'': 953,2\n    ''1039'': 954,2\n    ''104'': 170,2\n    ''1040'': 954,3\n    ''1041'': 955,1\n    ''1042'': 956,2\n    ''1043'': 957,2\n    ''1044'': 958,2\n    ''1045'': 959,2\n    ''1046'': 96,1\n    ''1047'': 960,1\n    ''1048'': 961,2\n    ''1049'': 962,2\n    ''105'': 171,1\n    ''1050'': 963,2\n    ''1051'': 964,2\n    ''1052'': 965,2\n    ''1053'': 966,2\n    ''1054'': 967,2\n    ''1055'': 968,1\n    ''1056'': 969,2\n    ''1057'': 969,3\n    ''1058'': 969,4\n    ''1059'': 97,1\n    ''106'': 172,1\n    ''1060'': 970,2\n    ''1061'': 971,2\n    ''1062'': 972,1\n    ''1063'': 973,1\n    ''1064'': 973,3\n    ''1065'': 974,2\n    ''1066'': 974,3\n    ''1067'': 975,2\n    ''1068'': 976,2\n    ''1069'': 977,2\n    ''107'': 173,1\n    ''1070'': 978,2\n    ''1071'': 979,2\n    ''1072'': 98,1\n    ''1073'': 980,1\n    ''1074'': 981,1\n    ''1075'': 982,2\n    ''1076'': 983,2\n    ''1077'': 984,2\n    ''1078'': 985,2\n    ''1079'': 986,1\n    ''108'': 174,2\n    ''1080'': 987,2\n    ''1081'': 988,2\n    ''1082'': 989,2\n    ''1083'': 99,1\n    ''1084'': 99,2\n    ''1085'': 990,2\n    ''1086'': 991,2\n    ''1087'': 992,2\n    ''1088'': 993,2\n    ''1089'': 994,1\n    ''109'': 175,1\n    ''1090'': 995,2\n    ''1091'': 996,2\n    ''1092'': 997,2\n    ''1093'': 998,1\n    ''1094'': 999,2\n    ''11'': 1004,3\n    ''110'': 176,1\n    ''111'': 177,1\n    ''112'': 178,1\n    ''113'': 179,1\n    ''114'': 18,1\n    ''115'': 180,1\n    ''116'': 181,1\n    ''117'': 182,1\n    ''118'': 182,2\n    ''119'': 183,1\n    ''12'': 1005,2\n    ''120'': 184,1\n    ''121'': 185,1\n    ''122'': 186,1\n    ''123'': 187,1\n    ''124'': 188,1\n    ''125'': 189,1\n    ''126'': 19,1\n    ''127'': 190,1\n    ''128'': 191,1\n    ''129'': 192,1\n    ''13'': 1006,2\n    ''130'': 193,1\n    ''131'': 194,1\n    ''132'': 195,1\n    ''133'': 196,1\n    ''134'': 197,1\n    ''135'': 198,1\n    ''136'': 199,1\n    ''137'': 2,1\n    ''138'': 2,2\n    ''139'': 20,1\n    ''14'': 1007,2\n    ''140'': 200,1\n    ''141'': 201,1\n    ''142'': 202,1\n    ''143'': 203,1\n    ''144'': 204,1\n    ''145'': 205,2\n    ''146'': 205,3\n    ''147'': 205,4\n    ''148'': 205,5\n    ''149'': 205,6\n    ''15'': 1008,2\n    ''150'': 206,1\n    ''151'': 207,1\n    ''152'': 208,1\n    ''153'': 209,1\n    ''154'': 21,1\n    ''155'': 210,1\n    ''156'': 211,1\n    ''157'': 212,1\n    ''158'': 213,1\n    ''159'': 214,1\n    ''16'': 1009,2\n    ''160'': 215,1\n    ''161'': 216,1\n    ''162'': 217,1\n    ''163'': 218,1\n    ''164'': 219,1\n    ''165'': 219,2\n    ''166'': 22,1\n    ''167'': 220,1\n    ''168'': 221,1\n    ''169'': 222,1\n    ''17'': 101,1\n    ''170'': 223,1\n    ''171'': 224,1\n    ''172'': 225,1\n    ''173'': 226,1\n    ''174'': 227,1\n    ''175'': 228,1\n    ''176'': 229,1\n    ''177'': 23,1\n    ''178'': 230,1\n    ''179'': 231,1\n    ''18'': 1010,1\n    ''180'': 232,1\n    ''181'': 233,1\n    ''182'': 234,1\n    ''183'': 235,1\n    ''184'': 236,1\n    ''185'': 237,1\n    ''186'': 238,1\n    ''187'': 239,1\n    ''188'': 239,2\n    ''189'': 24,1\n    ''19'': 1011,2\n    ''190'': 240,1\n    ''191'': 241,1\n    ''192'': 242,1\n    ''193'': 243,1\n    ''194'': 244,1\n    ''195'': 244,2\n    ''196'': 245,1\n    ''197'': 245,2\n    ''198'': 246,1\n    ''199'': 247,1\n    ''2'': 1,1\n    ''20'': 1012,2\n    ''200'': 248,1\n    ''201'': 249,1\n    ''202'': 25,1\n    ''203'': 250,1\n    ''204'': 251,1\n    ''205'': 251,2\n    ''206'': 252,1\n    ''207'': 253,1\n    ''208'': 254,1\n    ''209'': 255,1\n    ''21'': 1013,3\n    ''210'': 256,1\n    ''211'': 257,1\n    ''212'': 258,1\n    ''213'': 259,1\n    ''214'': 26,1\n    ''215'': 260,1\n    ''216'': 261,1\n    ''217'': 262,1\n    ''218'': 263,1\n    ''219'': 264,1\n    ''22'': 1013,4\n    ''220'': 265,1\n    ''221'': 266,1\n    ''222'': 267,1\n    ''223'': 268,1\n    ''224'': 269,1\n    ''225'': 27,1\n    ''226'': 270,1\n    ''227'': 271,1\n    ''228'': 272,1\n    ''229'': 273,1\n    ''23'': 102,2\n    ''230'': 274,1\n    ''231'': 275,1\n    ''232'': 276,1\n    ''233'': 277,1\n    ''234'': 278,1\n    ''235'': 279,1\n    ''236'': 28,1\n    ''237'': 280,1\n    ''238'': 281,1\n    ''239'': 282,1\n    ''24'': 103,1\n    ''240'': 283,1\n    ''241'': 284,1\n    ''242'': 285,1\n    ''243'': 286,1\n    ''244'': 287,1\n    ''245'': 288,1\n    ''246'': 289,1\n    ''247'': 29,1\n    ''248'': 290,1\n    ''249'': 291,1\n    ''25'': 104,1\n    ''250'': 292,1\n    ''251'': 293,1\n    ''252'': 293,2\n    ''253'': 294,1\n    ''254'': 295,1\n    ''255'': 295,2\n    ''256'': 296,1\n    ''257'': 297,1\n    ''258'': 298,1\n    ''259'': 299,1\n    ''26'': 105,1\n    ''260'': 3,1\n    ''261'': 30,1\n    ''262'': 300,1\n    ''263'': 301,1\n    ''264'': 302,1\n    ''265'': 303,1\n    ''266'': 304,1\n    ''267'': 305,1\n    ''268'': 306,1\n    ''269'': 307,1\n    ''27'': 106,1\n    ''270'': 308,1\n    ''271'': 309,1\n    ''272'': 309,2\n    ''273'': 31,1\n    ''274'': 310,1\n    ''275'': 310,2\n    ''276'': 311,1\n    ''277'': 312,1\n    ''278'': 313,1\n    ''279'': 314,1\n    ''28'': 107,1\n    ''280'': 315,1\n    ''281'': 316,1\n    ''282'': 317,1\n    ''283'': 317,2\n    ''284'': 318,1\n    ''285'': 318,2\n    ''286'': 319,1\n    ''287'': 319,2\n    ''288'': 32,1\n    ''289'': 320,1\n    ''29'': 108,1\n    ''290'': 321,1\n    ''291'': 322,1\n    ''292'': 323,1\n    ''293'': 324,1\n    ''294'': 324,3\n    ''295'': 325,1\n    ''296'': 326,1\n    ''297'': 327,1\n    ''298'': 328,1\n    ''299'': 328,3\n    ''3'': 10,1\n    ''30'': 109,1\n    ''300'': 329,1\n    ''301'': 33,1\n    ''302'': 330,1\n    ''303'': 331,1\n    ''304'': 332,1\n    ''305'': 333,1\n    ''306'': 334,1\n    ''307'': 335,1\n    ''308'': 335,2\n    ''309'': 336,1\n    ''31'': 11,1\n    ''310'': 337,1\n    ''311'': 338,1\n    ''312'': 339,1\n    ''313'': 34,1\n    ''314'': 340,1\n    ''315'': 341,2\n    ''316'': 342,1\n    ''317'': 343,1\n    ''318'': 344,1\n    ''319'': 345,2\n    ''32'': 110,1\n    ''320'': 346,1\n    ''321'': 347,1\n    ''322'': 348,1\n    ''323'': 349,2\n    ''324'': 35,1\n    ''325'': 350,1\n    ''326'': 350,2\n    ''327'': 351,1\n    ''328'': 352,2\n    ''329'': 353,1\n    ''33'': 110,2\n    ''330'': 354,1\n    ''331'': 355,1\n    ''332'': 356,1\n    ''333'': 357,1\n    ''334'': 358,1\n    ''335'': 359,1\n    ''336'': 36,1\n    ''337'': 360,1\n    ''338'': 361,1\n    ''339'': 361,2\n    ''34'': 111,1\n    ''340'': 362,1\n    ''341'': 363,1\n    ''342'': 364,1\n    ''343'': 365,1\n    ''344'': 366,1\n    ''345'': 367,1\n    ''346'': 368,1\n    ''347'': 369,1\n    ''348'': 37,1\n    ''349'': 370,1\n    ''35'': 112,1\n    ''350'': 370,2\n    ''351'': 371,1\n    ''352'': 372,1\n    ''353'': 373,1\n    ''354'': 374,1\n    ''355'': 375,1\n    ''356'': 376,1\n    ''357'': 377,1\n    ''358'': 378,1\n    ''359'': 379,1\n    ''36'': 113,1\n    ''360'': 38,1\n    ''361'': 380,1\n    ''362'': 381,1\n    ''363'': 382,1\n    ''364'': 382,2\n    ''365'': 383,1\n    ''366'': 384,1\n    ''367'': 385,1\n    ''368'': 385,2\n    ''369'': 386,1\n    ''37'': 114,1\n    ''370'': 387,1\n    ''371'': 388,1\n    ''372'': 389,1\n    ''373'': 39,1\n    ''374'': 39,2\n    ''375'': 390,1\n    ''376'': 391,1\n    ''377'': 392,1\n    ''378'': 393,1\n    ''379'': 394,1\n    ''38'': 115,1\n    ''380'': 395,1\n    ''381'': 396,1\n    ''382'': 397,1\n    ''383'': 398,1\n    ''384'': 399,1\n    ''385'': 4,1\n    ''386'': 40,1\n    ''387'': 400,1\n    ''388'': 401,1\n    ''389'': 402,1\n    ''39'': 116,2\n    ''390'': 403,1\n    ''391'': 404,1\n    ''392'': 405,1\n    ''393'': 406,1\n    ''394'': 406,2\n    ''395'': 407,1\n    ''396'': 408,1\n    ''397'': 409,1\n    ''398'': 41,1\n    ''399'': 410,1\n    ''4'': 100,1\n    ''40'': 117,1\n    ''400'': 411,1\n    ''401'': 412,1\n    ''402'': 413,1\n    ''403'': 413,2\n    ''404'': 414,1\n    ''405'': 415,1\n    ''406'': 416,1\n    ''407'': 417,1\n    ''408'': 417,2\n    ''409'': 418,1\n    ''41'': 118,1\n    ''410'': 418,2\n    ''411'': 419,1\n    ''412'': 42,1\n    ''413'': 420,1\n    ''414'': 421,1\n    ''415'': 422,1\n    ''416'': 423,1\n    ''417'': 424,1\n    ''418'': 425,1\n    ''419'': 426,1\n    ''42'': 119,1\n    ''420'': 427,1\n    ''421'': 428,1\n    ''422'': 429,1\n    ''423'': 43,1\n    ''424'': 430,1\n    ''425'': 431,1\n    ''426'': 432,1\n    ''427'': 433,1\n    ''428'': 434,1\n    ''429'': 435,1\n    ''43'': 12,1\n    ''430'': 436,1\n    ''431'': 437,1\n    ''432'': 438,1\n    ''433'': 439,1\n    ''434'': 44,2\n    ''435'': 440,1\n    ''436'': 441,1\n    ''437'': 442,1\n    ''438'': 443,1\n    ''439'': 444,1\n    ''44'': 120,1\n    ''440'': 445,1\n    ''441'': 446,1\n    ''442'': 447,1\n    ''443'': 448,1\n    ''444'': 449,1\n    ''445'': 45,1\n    ''446'': 450,1\n    ''447'': 451,1\n    ''448'': 452,1\n    ''449'': 453,1\n    ''45'': 121,1\n    ''450'': 454,1\n    ''451'': 455,1\n    ''452'': 456,1\n    ''453'': 457,1\n    ''454'': 458,1\n    ''455'': 459,1\n    ''456'': 459,2\n    ''457'': 46,1\n    ''458'': 460,1\n    ''459'': 461,1\n    ''46'': 122,1\n    ''460'': 462,1\n    ''461'': 463,1\n    ''462'': 464,1\n    ''463'': 465,1\n    ''464'': 466,1\n    ''465'': 467,1\n    ''466'': 468,1\n    ''467'': 469,1\n    ''468'': 47,1\n    ''469'': 470,1\n    ''47'': 123,1\n    ''470'': 471,1\n    ''471'': 472,1\n    ''472'': 473,1\n    ''473'': 474,1\n    ''474'': 475,1\n    ''475'': 476,1\n    ''476'': 477,1\n    ''477'': 478,1\n    ''478'': 479,1\n    ''479'': 48,1\n    ''48'': 124,1\n    ''480'': 480,1\n    ''481'': 481,1\n    ''482'': 482,1\n    ''483'': 483,1\n    ''484'': 484,1\n    ''485'': 485,1\n    ''486'': 486,1\n    ''487'': 487,1\n    ''488'': 488,1\n    ''489'': 489,1\n    ''49'': 125,1\n    ''490'': 49,1\n    ''491'': 490,1\n    ''492'': 491,1\n    ''493'': 492,1\n    ''494'': 493,1\n    ''495'': 493,2\n    ''496'': 493,3\n    ''497'': 493,4\n    ''498'': 494,2\n    ''499'': 495,1\n    ''5'': 1000,2\n    ''50'': 126,1\n    ''500'': 496,1\n    ''501'': 497,1\n    ''502'': 497,2\n    ''503'': 498,1\n    ''504'': 499,1\n    ''505'': 5,1\n    ''506'': 50,1\n    ''507'': 500,1\n    ''508'': 500,2\n    ''509'': 501,1\n    ''51'': 127,1\n    ''510'': 502,1\n    ''511'': 503,1\n    ''512'': 504,1\n    ''513'': 505,1\n    ''514'': 506,1\n    ''515'': 507,1\n    ''516'': 508,1\n    ''517'': 509,1\n    ''518'': 51,1\n    ''519'': 510,1\n    ''52'': 128,1\n    ''520'': 511,1\n    ''521'': 512,1\n    ''522'': 513,1\n    ''523'': 514,1\n    ''524'': 515,1\n    ''525'': 515,2\n    ''526'': 516,1\n    ''527'': 517,1\n    ''528'': 518,1\n    ''529'': 519,1\n    ''53'': 129,1\n    ''530'': 52,1\n    ''531'': 520,1\n    ''532'': 521,1\n    ''533'': 522,1\n    ''534'': 523,1\n    ''535'': 524,1\n    ''536'': 525,1\n    ''537'': 526,1\n    ''538'': 527,1\n    ''539'': 528,1\n    ''54'': 13,1\n    ''540'': 529,1\n    ''541'': 53,1\n    ''542'': 530,1\n    ''543'': 531,1\n    ''544'': 532,1\n    ''545'': 533,1\n    ''546'': 534,1\n    ''547'': 535,1\n    ''548'': 536,1\n    ''549'': 537,1\n    ''55'': 130,1\n    ''550'': 538,1\n    ''551'': 539,1\n    ''552'': 54,1\n    ''553'': 540,1\n    ''554'': 541,1\n    ''555'': 542,1\n    ''556'': 543,1\n    ''557'': 544,1\n    ''558'': 545,1\n    ''559'': 546,1\n    ''56'': 131,1\n    ''560'': 547,1\n    ''561'': 548,1\n    ''562'': 549,1\n    ''563'': 55,1\n    ''564'': 550,1\n    ''565'': 551,1\n    ''566'': 552,1\n    ''567'': 553,1\n    ''568'': 554,1\n    ''569'': 555,1\n    ''57'': 132,1\n    ''570'': 556,1\n    ''571'': 556,2\n    ''572'': 557,1\n    ''573'': 558,1\n    ''574'': 558,2\n    ''575'': 559,1\n    ''576'': 56,1\n    ''577'': 560,1\n    ''578'': 561,1\n    ''579'': 562,1\n    ''58'': 133,1\n    ''580'': 563,1\n    ''581'': 564,1\n    ''582'': 565,1\n    ''583'': 566,1\n    ''584'': 567,1\n    ''585'': 568,1\n    ''586'': 569,1\n    ''587'': 57,1\n    ''588'': 570,1\n    ''589'': 571,1\n    ''59'': 134,1\n    ''590'': 572,1\n    ''591'': 573,1\n    ''592'': 574,1\n    ''593'': 575,1\n    ''594'': 576,1\n    ''595'': 577,1\n    ''596'': 578,1\n    ''597'': 579,1\n    ''598'': 58,1\n    ''599'': 580,1\n    ''6'': 1001,2\n    ''60'': 135,1\n    ''600'': 581,1\n    ''601'': 582,1\n    ''602'': 583,1\n    ''603'': 584,1\n    ''604'': 585,1\n    ''605'': 586,1\n    ''606'': 586,2\n    ''607'': 587,2\n    ''608'': 588,2\n    ''609'': 589,1\n    ''61'': 136,1\n    ''610'': 59,1\n    ''611'': 590,2\n    ''612'': 591,2\n    ''613'': 592,2\n    ''614'': 593,2\n    ''615'': 594,2\n    ''616'': 595,1\n    ''617'': 596,2\n    ''618'': 597,2\n    ''619'': 597,3\n    ''62'': 136,2\n    ''620'': 598,2\n    ''621'': 599,2\n    ''622'': 6,1\n    ''623'': 60,1\n    ''624'': 600,1\n    ''625'': 601,2\n    ''626'': 602,2\n    ''627'': 603,1\n    ''628'': 604,2\n    ''629'': 605,2\n    ''63'': 137,1\n    ''630'': 606,1\n    ''631'': 607,1\n    ''632'': 608,1\n    ''633'': 609,2\n    ''634'': 61,1\n    ''635'': 610,1\n    ''636'': 611,3\n    ''637'': 612,2\n    ''638'': 613,2\n    ''639'': 614,2\n    ''64'': 138,1\n    ''640'': 615,2\n    ''641'': 615,3\n    ''642'': 616,2\n    ''643'': 617,1\n    ''644'': 617,3\n    ''645'': 618,2\n    ''646'': 619,2\n    ''647'': 62,1\n    ''648'': 620,2\n    ''649'': 621,2\n    ''65'': 139,1\n    ''650'': 622,2\n    ''651'': 623,1\n    ''652'': 624,2\n    ''653'': 625,2\n    ''654'': 626,2\n    ''655'': 627,2\n    ''656'': 628,2\n    ''657'': 629,2\n    ''658'': 63,1\n    ''659'': 630,1\n    ''66'': 14,1\n    ''660'': 631,2\n    ''661'': 632,2\n    ''662'': 632,3\n    ''663'': 633,1\n    ''664'': 634,2\n    ''665'': 634,3\n    ''666'': 635,2\n    ''667'': 636,2\n    ''668'': 636,3\n    ''669'': 637,2\n    ''67'': 140,1\n    ''670'': 638,2\n    ''671'': 639,1\n    ''672'': 64,1\n    ''673'': 640,2\n    ''674'': 641,1\n    ''675'': 642,2\n    ''676'': 643,2\n    ''677'': 644,1\n    ''678'': 645,2\n    ''679'': 646,2\n    ''68'': 141,1\n    ''680'': 647,2\n    ''681'': 648,2\n    ''682'': 649,2\n    ''683'': 65,1\n    ''684'': 650,2\n    ''685'': 651,1\n    ''686'': 652,1\n    ''687'': 653,2\n    ''688'': 654,2\n    ''689'': 655,2\n    ''69'': 142,1\n    ''690'': 656,2\n    ''691'': 657,2\n    ''692'': 658,2\n    ''693'': 659,2\n    ''694'': 66,1\n    ''695'': 660,2\n    ''696'': 661,2\n    ''697'': 662,2\n    ''698'': 663,1\n    ''699'': 664,2\n    ''7'': 1002,2\n    ''70'': 142,2\n    ''700'': 665,2\n    ''701'': 666,2\n    ''702'': 667,2\n    ''703'': 668,1\n    ''704'': 669,2\n    ''705'': 67,1\n    ''706'': 670,2\n    ''707'': 671,2\n    ''708'': 672,2\n    ''709'': 673,2\n    ''71'': 143,1\n    ''710'': 674,2\n    ''711'': 675,2\n    ''712'': 676,2\n    ''713'': 677,2\n    ''714'': 678,1\n    ''715'': 679,2\n    ''716'': 68,1\n    ''717'': 680,1\n    ''718'': 681,2\n    ''719'': 682,2\n    ''72'': 144,1\n    ''720'': 683,2\n    ''721'': 684,2\n    ''722'': 685,2\n    ''723'': 685,3\n    ''724'': 686,2\n    ''725'': 687,1\n    ''726'': 688,2\n    ''727'': 689,2\n    ''728'': 69,1\n    ''729'': 690,2\n    ''73'': 145,1\n    ''730'': 691,2\n    ''731'': 692,2\n    ''732'': 693,2\n    ''733'': 694,2\n    ''734'': 695,2\n    ''735'': 696,1\n    ''736'': 697,2\n    ''737'': 698,2\n    ''738'': 699,2\n    ''739'': 7,1\n    ''74'': 146,1\n    ''740'': 70,1\n    ''741'': 700,2\n    ''742'': 701,2\n    ''743'': 702,2\n    ''744'': 703,1\n    ''745'': 704,2\n    ''746'': 705,2\n    ''747'': 706,1\n    ''748'': 707,2\n    ''749'': 708,2\n    ''75'': 147,1\n    ''750'': 709,2\n    ''751'': 71,1\n    ''752'': 710,1\n    ''753'': 711,2\n    ''754'': 712,2\n    ''755'': 713,2\n    ''756'': 714,2\n    ''757'': 715,2\n    ''758'': 716,1\n    ''759'': 717,2\n    ''76'': 148,1\n    ''760'': 718,2\n    ''761'': 719,1\n    ''762'': 72,1\n    ''763'': 720,2\n    ''764'': 721,1\n    ''765'': 722,2\n    ''766'': 723,2\n    ''767'': 724,2\n    ''768'': 725,2\n    ''769'': 726,1\n    ''77'': 149,1\n    ''770'': 727,2\n    ''771'': 728,2\n    ''772'': 729,2\n    ''773'': 73,1\n    ''774'': 73,2\n    ''775'': 730,1\n    ''776'': 731,1\n    ''777'': 732,1\n    ''778'': 733,2\n    ''779'': 734,2\n    ''78'': 15,1\n    ''780'': 735,2\n    ''781'': 736,3\n    ''782'': 737,2\n    ''783'': 737,3\n    ''784'': 738,2\n    ''785'': 739,2\n    ''786'': 74,1\n    ''787'': 740,1\n    ''788'': 741,2\n    ''789'': 742,1\n    ''79'': 150,1\n    ''790'': 743,2\n    ''791'': 744,2\n    ''792'': 745,1\n    ''793'': 746,2\n    ''794'': 747,2\n    ''795'': 748,1\n    ''796'': 749,1\n    ''797'': 75,1\n    ''798'': 750,2\n    ''799'': 751,1\n    ''8'': 1003,2\n    ''80'': 151,1\n    ''800'': 752,2\n    ''801'': 753,2\n    ''802'': 754,2\n    ''803'': 755,2\n    ''804'': 756,2\n    ''805'': 757,2\n    ''806'': 758,2\n    ''807'': 759,2\n    ''808'': 76,1\n    ''809'': 76,2\n    ''81'': 152,1\n    ''810'': 760,1\n    ''811'': 761,2\n    ''812'': 762,2\n    ''813'': 762,3\n    ''814'': 763,2\n    ''815'': 764,2\n    ''816'': 765,2\n    ''817'': 766,1\n    ''818'': 767,2\n    ''819'': 768,2\n    ''82'': 153,1\n    ''820'': 769,2\n    ''821'': 77,1\n    ''822'': 770,2\n    ''823'': 771,1\n    ''824'': 772,2\n    ''825'': 773,2\n    ''826'': 774,2\n    ''827'': 775,1\n    ''828'': 776,2\n    ''829'': 777,2\n    ''83'': 154,1\n    ''830'': 777,3\n    ''831'': 777,4\n    ''832'': 778,1\n    ''833'': 779,1\n    ''834'': 78,1\n    ''835'': 780,1\n    ''836'': 780,3\n    ''837'': 781,2\n    ''838'': 782,3\n    ''839'': 783,1\n    ''84'': 155,1\n    ''840'': 784,2\n    ''841'': 785,2\n    ''842'': 786,2\n    ''843'': 787,2\n    ''844'': 788,1\n    ''845'': 789,2\n    ''846'': 79,1\n    ''847'': 790,2\n    ''848'': 791,2\n    ''849'': 792,2\n    ''85'': 155,2\n    ''850'': 793,2\n    ''851'': 794,2\n    ''852'': 795,2\n    ''853'': 796,2\n    ''854'': 797,2\n    ''855'': 798,1\n    ''856'': 799,2\n    ''857'': 8,1\n    ''858'': 80,1\n    ''859'': 800,2\n    ''86'': 155,3\n    ''860'': 801,1\n    ''861'': 802,1\n    ''862'': 803,1\n    ''863'': 803,3\n    ''864'': 804,2\n    ''865'': 805,2\n    ''866'': 806,2\n    ''867'': 807,1\n    ''868'': 808,1\n    ''869'': 809,2\n    ''87'': 156,1\n    ''870'': 81,1\n    ''871'': 810,1\n    ''872'': 811,2\n    ''873'': 812,2\n    ''874'': 813,2\n    ''875'': 814,2\n    ''876'': 815,1\n    ''877'': 815,3\n    ''878'': 816,2\n    ''879'': 817,2\n    ''88'': 157,1\n    ''880'': 818,2\n    ''881'': 819,2\n    ''882'': 82,1\n    ''883'': 820,2\n    ''884'': 821,2\n    ''885'': 822,2\n    ''886'': 823,1\n    ''887'': 824,2\n    ''888'': 825,2\n    ''889'': 826,2\n    ''89'': 158,1\n    ''890'': 827,2\n    ''891'': 828,2\n    ''892'': 829,2\n    ''893'': 83,1\n    ''894'': 830,2\n    ''895'': 831,1\n    ''896'': 832,2\n    ''897'': 833,2\n    ''898'': 834,1\n    ''899'': 835,2\n    ''9'': 1003,3\n    ''90'': 159,1\n    ''900'': 836,2\n    ''901'': 837,1\n    ''902'': 837,3\n    ''903'': 838,2\n    ''904'': 839,2\n    ''905'': 84,1\n    ''906'': 840,2\n    ''907'': 841,2\n    ''908'': 842,1\n    ''909'': 843,2\n    ''91'': 16,1\n    ''910'': 844,1\n    ''911'': 845,2\n    ''912'': 846,1\n    ''913'': 847,2\n    ''914'': 848,2\n    ''915'': 849,1\n    ''916'': 85,1\n    ''917'': 850,2\n    ''918'': 851,2\n    ''919'': 852,2\n    ''92'': 160,1\n    ''920'': 853,2\n    ''921'': 854,2\n    ''922'': 855,2\n    ''923'': 856,2\n    ''924'': 857,2\n    ''925'': 858,2\n    ''926'': 859,2\n    ''927'': 86,1\n    ''928'': 860,2\n    ''929'': 861,2\n    ''93'': 161,1\n    ''930'': 862,2\n    ''931'': 863,1\n    ''932'': 864,2\n    ''933'': 865,2\n    ''934'': 866,2\n    ''935'': 867,2\n    ''936'': 868,2\n    ''937'': 869,2\n    ''938'': 87,1\n    ''939'': 870,2\n    ''94'': 162,1\n    ''940'': 871,2\n    ''941'': 872,2\n    ''942'': 873,2\n    ''943'': 874,1\n    ''944'': 875,1\n    ''945'': 876,2\n    ''946'': 877,2\n    ''947'': 878,2\n    ''948'': 879,1\n    ''949'': 88,1\n    ''95'': 163,1\n    ''950'': 880,2\n    ''951'': 881,2\n    ''952'': 882,1\n    ''953'': 883,2\n    ''954'': 884,2\n    ''955'': 885,3\n    ''956'': 886,2\n    ''957'': 887,1\n    ''958'': 888,2\n    ''959'': 889,2\n    ''96'': 164,1\n    ''960'': 89,1\n    ''961'': 890,2\n    ''962'': 891,2\n    ''963'': 892,2\n    ''964'': 893,2\n    ''965'': 894,2\n    ''966'': 895,2\n    ''967'': 896,2\n    ''968'': 897,2\n    ''969'': 898,2\n    ''97'': 165,1\n    ''970'': 899,2\n    ''971'': 9,1\n    ''972'': 90,1\n    ''973'': 900,2\n    ''974'': 901,2\n    ''975'': 902,1\n    ''976'': 903,1\n    ''977'': 904,2\n    ''978'': 905,2\n    ''979'': 906,2\n    ''98'': 166,1\n    ''980'': 907,2\n    ''981'': 908,2\n    ''982'': 909,2\n    ''983'': 91,1\n    ''984'': 91,2\n    ''985'': 91,3\n    ''986'': 910,2\n    ''987'': 911,2\n    ''988'': 912,2\n    ''989'': 913,1\n    ''99'': 167,1\n    ''990'': 914,2\n    ''991'': 915,2\n    ''992'': 915,3\n    ''993'': 916,2\n    ''994'': 917,2\n    ''995'': 918,2\n    ''996'': 919,1\n    ''997'': 92,1\n    ''998'': 920,2\n    ''999'': 921,2\n  - ''#END#'': 1\n    ''#START#'': 0\n    1,1: 2\n    10,1: 3\n    100,1: 4\n    1000,2: 5\n    1001,2: 6\n    1002,2: 7\n    1003,2: 8\n    1003,3: 9\n    1004,2: 10\n    1004,3: 11\n    1005,2: 12\n    1006,2: 13\n    1007,2: 14\n    1008,2: 15\n    1009,2: 16\n    101,1: 17\n    1010,1: 18\n    1011,2: 19\n    1012,2: 20\n    1013,3: 21\n    1013,4: 22\n    102,2: 23\n    103,1: 24\n    104,1: 25\n    105,1: 26\n    106,1: 27\n    107,1: 28\n    108,1: 29\n    109,1: 30\n    11,1: 31\n    110,1: 32\n    110,2: 33\n    111,1: 34\n    112,1: 35\n    113,1: 36\n    114,1: 37\n    115,1: 38\n    116,2: 39\n    117,1: 40\n    118,1: 41\n    119,1: 42\n    12,1: 43\n    120,1: 44\n    121,1: 45\n    122,1: 46\n    123,1: 47\n    124,1: 48\n    125,1: 49\n    126,1: 50\n    127,1: 51\n    128,1: 52\n    129,1: 53\n    13,1: 54\n    130,1: 55\n    131,1: 56\n    132,1: 57\n    133,1: 58\n    134,1: 59\n    135,1: 60\n    136,1: 61\n    136,2: 62\n    137,1: 63\n    138,1: 64\n    139,1: 65\n    14,1: 66\n    140,1: 67\n    141,1: 68\n    142,1: 69\n    142,2: 70\n    143,1: 71\n    144,1: 72\n    145,1: 73\n    146,1: 74\n    147,1: 75\n    148,1: 76\n    149,1: 77\n    15,1: 78\n    150,1: 79\n    151,1: 80\n    152,1: 81\n    153,1: 82\n    154,1: 83\n    155,1: 84\n    155,2: 85\n    155,3: 86\n    156,1: 87\n    157,1: 88\n    158,1: 89\n    159,1: 90\n    16,1: 91\n    160,1: 92\n    161,1: 93\n    162,1: 94\n    163,1: 95\n    164,1: 96\n    165,1: 97\n    166,1: 98\n    167,1: 99\n    168,1: 100\n    169,1: 101\n    17,1: 102\n    170,1: 103\n    170,2: 104\n    171,1: 105\n    172,1: 106\n    173,1: 107\n    174,2: 108\n    175,1: 109\n    176,1: 110\n    177,1: 111\n    178,1: 112\n    179,1: 113\n    18,1: 114\n    180,1: 115\n    181,1: 116\n    182,1: 117\n    182,2: 118\n    183,1: 119\n    184,1: 120\n    185,1: 121\n    186,1: 122\n    187,1: 123\n    188,1: 124\n    189,1: 125\n    19,1: 126\n    190,1: 127\n    191,1: 128\n    192,1: 129\n    193,1: 130\n    194,1: 131\n    195,1: 132\n    196,1: 133\n    197,1: 134\n    198,1: 135\n    199,1: 136\n    2,1: 137\n    2,2: 138\n    20,1: 139\n    200,1: 140\n    201,1: 141\n    202,1: 142\n    203,1: 143\n    204,1: 144\n    205,2: 145\n    205,3: 146\n    205,4: 147\n    205,5: 148\n    205,6: 149\n    206,1: 150\n    207,1: 151\n    208,1: 152\n    209,1: 153\n    21,1: 154\n    210,1: 155\n    211,1: 156\n    212,1: 157\n    213,1: 158\n    214,1: 159\n    215,1: 160\n    216,1: 161\n    217,1: 162\n    218,1: 163\n    219,1: 164\n    219,2: 165\n    22,1: 166\n    220,1: 167\n    221,1: 168\n    222,1: 169\n    223,1: 170\n    224,1: 171\n    225,1: 172\n    226,1: 173\n    227,1: 174\n    228,1: 175\n    229,1: 176\n    23,1: 177\n    230,1: 178\n    231,1: 179\n    232,1: 180\n    233,1: 181\n    234,1: 182\n    235,1: 183\n    236,1: 184\n    237,1: 185\n    238,1: 186\n    239,1: 187\n    239,2: 188\n    24,1: 189\n    240,1: 190\n    241,1: 191\n    242,1: 192\n    243,1: 193\n    244,1: 194\n    244,2: 195\n    245,1: 196\n    245,2: 197\n    246,1: 198\n    247,1: 199\n    248,1: 200\n    249,1: 201\n    25,1: 202\n    250,1: 203\n    251,1: 204\n    251,2: 205\n    252,1: 206\n    253,1: 207\n    254,1: 208\n    255,1: 209\n    256,1: 210\n    257,1: 211\n    258,1: 212\n    259,1: 213\n    26,1: 214\n    260,1: 215\n    261,1: 216\n    262,1: 217\n    263,1: 218\n    264,1: 219\n    265,1: 220\n    266,1: 221\n    267,1: 222\n    268,1: 223\n    269,1: 224\n    27,1: 225\n    270,1: 226\n    271,1: 227\n    272,1: 228\n    273,1: 229\n    274,1: 230\n    275,1: 231\n    276,1: 232\n    277,1: 233\n    278,1: 234\n    279,1: 235\n    28,1: 236\n    280,1: 237\n    281,1: 238\n    282,1: 239\n    283,1: 240\n    284,1: 241\n    285,1: 242\n    286,1: 243\n    287,1: 244\n    288,1: 245\n    289,1: 246\n    29,1: 247\n    290,1: 248\n    291,1: 249\n    292,1: 250\n    293,1: 251\n    293,2: 252\n    294,1: 253\n    295,1: 254\n    295,2: 255\n    296,1: 256\n    297,1: 257\n    298,1: 258\n    299,1: 259\n    3,1: 260\n    30,1: 261\n    300,1: 262\n    301,1: 263\n    302,1: 264\n    303,1: 265\n    304,1: 266\n    305,1: 267\n    306,1: 268\n    307,1: 269\n    308,1: 270\n    309,1: 271\n    309,2: 272\n    31,1: 273\n    310,1: 274\n    310,2: 275\n    311,1: 276\n    312,1: 277\n    313,1: 278\n    314,1: 279\n    315,1: 280\n    316,1: 281\n    317,1: 282\n    317,2: 283\n    318,1: 284\n    318,2: 285\n    319,1: 286\n    319,2: 287\n    32,1: 288\n    320,1: 289\n    321,1: 290\n    322,1: 291\n    323,1: 292\n    324,1: 293\n    324,3: 294\n    325,1: 295\n    326,1: 296\n    327,1: 297\n    328,1: 298\n    328,3: 299\n    329,1: 300\n    33,1: 301\n    330,1: 302\n    331,1: 303\n    332,1: 304\n    333,1: 305\n    334,1: 306\n    335,1: 307\n    335,2: 308\n    336,1: 309\n    337,1: 310\n    338,1: 311\n    339,1: 312\n    34,1: 313\n    340,1: 314\n    341,2: 315\n    342,1: 316\n    343,1: 317\n    344,1: 318\n    345,2: 319\n    346,1: 320\n    347,1: 321\n    348,1: 322\n    349,2: 323\n    35,1: 324\n    350,1: 325\n    350,2: 326\n    351,1: 327\n    352,2: 328\n    353,1: 329\n    354,1: 330\n    355,1: 331\n    356,1: 332\n    357,1: 333\n    358,1: 334\n    359,1: 335\n    36,1: 336\n    360,1: 337\n    361,1: 338\n    361,2: 339\n    362,1: 340\n    363,1: 341\n    364,1: 342\n    365,1: 343\n    366,1: 344\n    367,1: 345\n    368,1: 346\n    369,1: 347\n    37,1: 348\n    370,1: 349\n    370,2: 350\n    371,1: 351\n    372,1: 352\n    373,1: 353\n    374,1: 354\n    375,1: 355\n    376,1: 356\n    377,1: 357\n    378,1: 358\n    379,1: 359\n    38,1: 360\n    380,1: 361\n    381,1: 362\n    382,1: 363\n    382,2: 364\n    383,1: 365\n    384,1: 366\n    385,1: 367\n    385,2: 368\n    386,1: 369\n    387,1: 370\n    388,1: 371\n    389,1: 372\n    39,1: 373\n    39,2: 374\n    390,1: 375\n    391,1: 376\n    392,1: 377\n    393,1: 378\n    394,1: 379\n    395,1: 380\n    396,1: 381\n    397,1: 382\n    398,1: 383\n    399,1: 384\n    4,1: 385\n    40,1: 386\n    400,1: 387\n    401,1: 388\n    402,1: 389\n    403,1: 390\n    404,1: 391\n    405,1: 392\n    406,1: 393\n    406,2: 394\n    407,1: 395\n    408,1: 396\n    409,1: 397\n    41,1: 398\n    410,1: 399\n    411,1: 400\n    412,1: 401\n    413,1: 402\n    413,2: 403\n    414,1: 404\n    415,1: 405\n    416,1: 406\n    417,1: 407\n    417,2: 408\n    418,1: 409\n    418,2: 410\n    419,1: 411\n    42,1: 412\n    420,1: 413\n    421,1: 414\n    422,1: 415\n    423,1: 416\n    424,1: 417\n    425,1: 418\n    426,1: 419\n    427,1: 420\n    428,1: 421\n    429,1: 422\n    43,1: 423\n    430,1: 424\n    431,1: 425\n    432,1: 426\n    433,1: 427\n    434,1: 428\n    435,1: 429\n    436,1: 430\n    437,1: 431\n    438,1: 432\n    439,1: 433\n    44,2: 434\n    440,1: 435\n    441,1: 436\n    442,1: 437\n    443,1: 438\n    444,1: 439\n    445,1: 440\n    446,1: 441\n    447,1: 442\n    448,1: 443\n    449,1: 444\n    45,1: 445\n    450,1: 446\n    451,1: 447\n    452,1: 448\n    453,1: 449\n    454,1: 450\n    455,1: 451\n    456,1: 452\n    457,1: 453\n    458,1: 454\n    459,1: 455\n    459,2: 456\n    46,1: 457\n    460,1: 458\n    461,1: 459\n    462,1: 460\n    463,1: 461\n    464,1: 462\n    465,1: 463\n    466,1: 464\n    467,1: 465\n    468,1: 466\n    469,1: 467\n    47,1: 468\n    470,1: 469\n    471,1: 470\n    472,1: 471\n    473,1: 472\n    474,1: 473\n    475,1: 474\n    476,1: 475\n    477,1: 476\n    478,1: 477\n    479,1: 478\n    48,1: 479\n    480,1: 480\n    481,1: 481\n    482,1: 482\n    483,1: 483\n    484,1: 484\n    485,1: 485\n    486,1: 486\n    487,1: 487\n    488,1: 488\n    489,1: 489\n    49,1: 490\n    490,1: 491\n    491,1: 492\n    492,1: 493\n    493,1: 494\n    493,2: 495\n    493,3: 496\n    493,4: 497\n    494,2: 498\n    495,1: 499\n    496,1: 500\n    497,1: 501\n    497,2: 502\n    498,1: 503\n    499,1: 504\n    5,1: 505\n    50,1: 506\n    500,1: 507\n    500,2: 508\n    501,1: 509\n    502,1: 510\n    503,1: 511\n    504,1: 512\n    505,1: 513\n    506,1: 514\n    507,1: 515\n    508,1: 516\n    509,1: 517\n    51,1: 518\n    510,1: 519\n    511,1: 520\n    512,1: 521\n    513,1: 522\n    514,1: 523\n    515,1: 524\n    515,2: 525\n    516,1: 526\n    517,1: 527\n    518,1: 528\n    519,1: 529\n    52,1: 530\n    520,1: 531\n    521,1: 532\n    522,1: 533\n    523,1: 534\n    524,1: 535\n    525,1: 536\n    526,1: 537\n    527,1: 538\n    528,1: 539\n    529,1: 540\n    53,1: 541\n    530,1: 542\n    531,1: 543\n    532,1: 544\n    533,1: 545\n    534,1: 546\n    535,1: 547\n    536,1: 548\n    537,1: 549\n    538,1: 550\n    539,1: 551\n    54,1: 552\n    540,1: 553\n    541,1: 554\n    542,1: 555\n    543,1: 556\n    544,1: 557\n    545,1: 558\n    546,1: 559\n    547,1: 560\n    548,1: 561\n    549,1: 562\n    55,1: 563\n    550,1: 564\n    551,1: 565\n    552,1: 566\n    553,1: 567\n    554,1: 568\n    555,1: 569\n    556,1: 570\n    556,2: 571\n    557,1: 572\n    558,1: 573\n    558,2: 574\n    559,1: 575\n    56,1: 576\n    560,1: 577\n    561,1: 578\n    562,1: 579\n    563,1: 580\n    564,1: 581\n    565,1: 582\n    566,1: 583\n    567,1: 584\n    568,1: 585\n    569,1: 586\n    57,1: 587\n    570,1: 588\n    571,1: 589\n    572,1: 590\n    573,1: 591\n    574,1: 592\n    575,1: 593\n    576,1: 594\n    577,1: 595\n    578,1: 596\n    579,1: 597\n    58,1: 598\n    580,1: 599\n    581,1: 600\n    582,1: 601\n    583,1: 602\n    584,1: 603\n    585,1: 604\n    586,1: 605\n    586,2: 606\n    587,2: 607\n    588,2: 608\n    589,1: 609\n    59,1: 610\n    590,2: 611\n    591,2: 612\n    592,2: 613\n    593,2: 614\n    594,2: 615\n    595,1: 616\n    596,2: 617\n    597,2: 618\n    597,3: 619\n    598,2: 620\n    599,2: 621\n    6,1: 622\n    60,1: 623\n    600,1: 624\n    601,2: 625\n    602,2: 626\n    603,1: 627\n    604,2: 628\n    605,2: 629\n    606,1: 630\n    607,1: 631\n    608,1: 632\n    609,2: 633\n    61,1: 634\n    610,1: 635\n    611,3: 636\n    612,2: 637\n    613,2: 638\n    614,2: 639\n    615,2: 640\n    615,3: 641\n    616,2: 642\n    617,1: 643\n    617,3: 644\n    618,2: 645\n    619,2: 646\n    62,1: 647\n    620,2: 648\n    621,2: 649\n    622,2: 650\n    623,1: 651\n    624,2: 652\n    625,2: 653\n    626,2: 654\n    627,2: 655\n    628,2: 656\n    629,2: 657\n    63,1: 658\n    630,1: 659\n    631,2: 660\n    632,2: 661\n    632,3: 662\n    633,1: 663\n    634,2: 664\n    634,3: 665\n    635,2: 666\n    636,2: 667\n    636,3: 668\n    637,2: 669\n    638,2: 670\n    639,1: 671\n    64,1: 672\n    640,2: 673\n    641,1: 674\n    642,2: 675\n    643,2: 676\n    644,1: 677\n    645,2: 678\n    646,2: 679\n    647,2: 680\n    648,2: 681\n    649,2: 682\n    65,1: 683\n    650,2: 684\n    651,1: 685\n    652,1: 686\n    653,2: 687\n    654,2: 688\n    655,2: 689\n    656,2: 690\n    657,2: 691\n    658,2: 692\n    659,2: 693\n    66,1: 694\n    660,2: 695\n    661,2: 696\n    662,2: 697\n    663,1: 698\n    664,2: 699\n    665,2: 700\n    666,2: 701\n    667,2: 702\n    668,1: 703\n    669,2: 704\n    67,1: 705\n    670,2: 706\n    671,2: 707\n    672,2: 708\n    673,2: 709\n    674,2: 710\n    675,2: 711\n    676,2: 712\n    677,2: 713\n    678,1: 714\n    679,2: 715\n    68,1: 716\n    680,1: 717\n    681,2: 718\n    682,2: 719\n    683,2: 720\n    684,2: 721\n    685,2: 722\n    685,3: 723\n    686,2: 724\n    687,1: 725\n    688,2: 726\n    689,2: 727\n    69,1: 728\n    690,2: 729\n    691,2: 730\n    692,2: 731\n    693,2: 732\n    694,2: 733\n    695,2: 734\n    696,1: 735\n    697,2: 736\n    698,2: 737\n    699,2: 738\n    7,1: 739\n    70,1: 740\n    700,2: 741\n    701,2: 742\n    702,2: 743\n    703,1: 744\n    704,2: 745\n    705,2: 746\n    706,1: 747\n    707,2: 748\n    708,2: 749\n    709,2: 750\n    71,1: 751\n    710,1: 752\n    711,2: 753\n    712,2: 754\n    713,2: 755\n    714,2: 756\n    715,2: 757\n    716,1: 758\n    717,2: 759\n    718,2: 760\n    719,1: 761\n    72,1: 762\n    720,2: 763\n    721,1: 764\n    722,2: 765\n    723,2: 766\n    724,2: 767\n    725,2: 768\n    726,1: 769\n    727,2: 770\n    728,2: 771\n    729,2: 772\n    73,1: 773\n    73,2: 774\n    730,1: 775\n    731,1: 776\n    732,1: 777\n    733,2: 778\n    734,2: 779\n    735,2: 780\n    736,3: 781\n    737,2: 782\n    737,3: 783\n    738,2: 784\n    739,2: 785\n    74,1: 786\n    740,1: 787\n    741,2: 788\n    742,1: 789\n    743,2: 790\n    744,2: 791\n    745,1: 792\n    746,2: 793\n    747,2: 794\n    748,1: 795\n    749,1: 796\n    75,1: 797\n    750,2: 798\n    751,1: 799\n    752,2: 800\n    753,2: 801\n    754,2: 802\n    755,2: 803\n    756,2: 804\n    757,2: 805\n    758,2: 806\n    759,2: 807\n    76,1: 808\n    76,2: 809\n    760,1: 810\n    761,2: 811\n    762,2: 812\n    762,3: 813\n    763,2: 814\n    764,2: 815\n    765,2: 816\n    766,1: 817\n    767,2: 818\n    768,2: 819\n    769,2: 820\n    77,1: 821\n    770,2: 822\n    771,1: 823\n    772,2: 824\n    773,2: 825\n    774,2: 826\n    775,1: 827\n    776,2: 828\n    777,2: 829\n    777,3: 830\n    777,4: 831\n    778,1: 832\n    779,1: 833\n    78,1: 834\n    780,1: 835\n    780,3: 836\n    781,2: 837\n    782,3: 838\n    783,1: 839\n    784,2: 840\n    785,2: 841\n    786,2: 842\n    787,2: 843\n    788,1: 844\n    789,2: 845\n    79,1: 846\n    790,2: 847\n    791,2: 848\n    792,2: 849\n    793,2: 850\n    794,2: 851\n    795,2: 852\n    796,2: 853\n    797,2: 854\n    798,1: 855\n    799,2: 856\n    8,1: 857\n    80,1: 858\n    800,2: 859\n    801,1: 860\n    802,1: 861\n    803,1: 862\n    803,3: 863\n    804,2: 864\n    805,2: 865\n    806,2: 866\n    807,1: 867\n    808,1: 868\n    809,2: 869\n    81,1: 870\n    810,1: 871\n    811,2: 872\n    812,2: 873\n    813,2: 874\n    814,2: 875\n    815,1: 876\n    815,3: 877\n    816,2: 878\n    817,2: 879\n    818,2: 880\n    819,2: 881\n    82,1: 882\n    820,2: 883\n    821,2: 884\n    822,2: 885\n    823,1: 886\n    824,2: 887\n    825,2: 888\n    826,2: 889\n    827,2: 890\n    828,2: 891\n    829,2: 892\n    83,1: 893\n    830,2: 894\n    831,1: 895\n    832,2: 896\n    833,2: 897\n    834,1: 898\n    835,2: 899\n    836,2: 900\n    837,1: 901\n    837,3: 902\n    838,2: 903\n    839,2: 904\n    84,1: 905\n    840,2: 906\n    841,2: 907\n    842,1: 908\n    843,2: 909\n    844,1: 910\n    845,2: 911\n    846,1: 912\n    847,2: 913\n    848,2: 914\n    849,1: 915\n    85,1: 916\n    850,2: 917\n    851,2: 918\n    852,2: 919\n    853,2: 920\n    854,2: 921\n    855,2: 922\n    856,2: 923\n    857,2: 924\n    858,2: 925\n    859,2: 926\n    86,1: 927\n    860,2: 928\n    861,2: 929\n    862,2: 930\n    863,1: 931\n    864,2: 932\n    865,2: 933\n    866,2: 934\n    867,2: 935\n    868,2: 936\n    869,2: 937\n    87,1: 938\n    870,2: 939\n    871,2: 940\n    872,2: 941\n    873,2: 942\n    874,1: 943\n    875,1: 944\n    876,2: 945\n    877,2: 946\n    878,2: 947\n    879,1: 948\n    88,1: 949\n    880,2: 950\n    881,2: 951\n    882,1: 952\n    883,2: 953\n    884,2: 954\n    885,3: 955\n    886,2: 956\n    887,1: 957\n    888,2: 958\n    889,2: 959\n    89,1: 960\n    890,2: 961\n    891,2: 962\n    892,2: 963\n    893,2: 964\n    894,2: 965\n    895,2: 966\n    896,2: 967\n    897,2: 968\n    898,2: 969\n    899,2: 970\n    9,1: 971\n    90,1: 972\n    900,2: 973\n    901,2: 974\n    902,1: 975\n    903,1: 976\n    904,2: 977\n    905,2: 978\n    906,2: 979\n    907,2: 980\n    908,2: 981\n    909,2: 982\n    91,1: 983\n    91,2: 984\n    91,3: 985\n    910,2: 986\n    911,2: 987\n    912,2: 988\n    913,1: 989\n    914,2: 990\n    915,2: 991\n    915,3: 992\n    916,2: 993\n    917,2: 994\n    918,2: 995\n    919,1: 996\n    92,1: 997\n    920,2: 998\n    921,2: 999\n    922,2: 1000\n    923,2: 1001\n    924,2: 1002\n    925,1: 1003\n    925,3: 1004\n    926,2: 1005\n    927,1: 1006\n    927,3: 1007\n    928,2: 1008\n    929,2: 1009\n    93,1: 1010\n    93,2: 1011\n    93,3: 1012\n    930,2: 1013\n    931,2: 1014\n    932,2: 1015\n    933,2: 1016\n    934,2: 1017\n    935,2: 1018\n    936,2: 1019\n    937,2: 1020\n    938,2: 1021\n    939,1: 1022\n    94,1: 1023\n    940,2: 1024\n    941,2: 1025\n    942,2: 1026\n    943,1: 1027\n    944,2: 1028\n    945,2: 1029\n    946,2: 1030\n    947,1: 1031\n    948,2: 1032\n    949,2: 1033\n    95,1: 1034\n    950,2: 1035\n    951,2: 1036\n    952,2: 1037\n    953,2: 1038\n    954,2: 1039\n    954,3: 1040\n    955,1: 1041\n    956,2: 1042\n    957,2: 1043\n    958,2: 1044\n    959,2: 1045\n    96,1: 1046\n    960,1: 1047\n    961,2: 1048\n    962,2: 1049\n    963,2: 1050\n    964,2: 1051\n    965,2: 1052\n    966,2: 1053\n    967,2: 1054\n    968,1: 1055\n    969,2: 1056\n    969,3: 1057\n    969,4: 1058\n    97,1: 1059\n    970,2: 1060\n    971,2: 1061\n    972,1: 1062\n    973,1: 1063\n    973,3: 1064\n    974,2: 1065\n    974,3: 1066\n    975,2: 1067\n    976,2: 1068\n    977,2: 1069\n    978,2: 1070\n    979,2: 1071\n    98,1: 1072\n    980,1: 1073\n    981,1: 1074\n    982,2: 1075\n    983,2: 1076\n    984,2: 1077\n    985,2: 1078\n    986,1: 1079\n    987,2: 1080\n    988,2: 1081\n    989,2: 1082\n    99,1: 1083\n    99,2: 1084\n    990,2: 1085\n    991,2: 1086\n    992,2: 1087\n    993,2: 1088\n    994,1: 1089\n    995,2: 1090\n    996,2: 1091\n    997,2: 1092\n    998,1: 1093\n    999,2: 1094\n  - {}\n  - *1\n- !!perl/array:Graph::AdjacencyMap::Heavy\n  - 1190\n  - 128\n  - 2\n  - ''0'': &2\n    - 0\n    - 2\n    ''1'': &3\n    - 2\n    - 137\n    ''10'': &4\n    - 9\n    - 10\n    ''100'': &5\n    - 92\n    - 93\n    ''1000'': &6\n    - 922\n    - 923\n    ''1001'': &7\n    - 923\n    - 924\n    ''1002'': &8\n    - 924\n    - 925\n    ''1003'': &9\n    - 925\n    - 926\n    ''1004'': &10\n    - 926\n    - 928\n    ''1005'': &11\n    - 927\n    - 938\n    ''1006'': &12\n    - 928\n    - 929\n    ''1007'': &13\n    - 929\n    - 930\n    ''1008'': &14\n    - 930\n    - 931\n    ''1009'': &15\n    - 931\n    - 932\n    ''101'': &16\n    - 93\n    - 94\n    ''1010'': &17\n    - 932\n    - 933\n    ''1011'': &18\n    - 933\n    - 934\n    ''1012'': &19\n    - 934\n    - 935\n    ''1013'': &20\n    - 935\n    - 936\n    ''1014'': &21\n    - 936\n    - 937\n    ''1015'': &22\n    - 937\n    - 939\n    ''1016'': &23\n    - 938\n    - 949\n    ''1017'': &24\n    - 939\n    - 940\n    ''1018'': &25\n    - 940\n    - 941\n    ''1019'': &26\n    - 941\n    - 942\n    ''102'': &27\n    - 94\n    - 95\n    ''1020'': &28\n    - 942\n    - 943\n    ''1021'': &29\n    - 943\n    - 944\n    ''1022'': &30\n    - 944\n    - 945\n    ''1023'': &31\n    - 945\n    - 946\n    ''1024'': &32\n    - 946\n    - 947\n    ''1025'': &33\n    - 947\n    - 948\n    ''1026'': &34\n    - 948\n    - 950\n    ''1027'': &35\n    - 949\n    - 960\n    ''1028'': &36\n    - 950\n    - 951\n    ''1029'': &37\n    - 951\n    - 952\n    ''103'': &38\n    - 95\n    - 96\n    ''1030'': &39\n    - 952\n    - 953\n    ''1031'': &40\n    - 953\n    - 954\n    ''1032'': &41\n    - 954\n    - 955\n    ''1033'': &42\n    - 955\n    - 956\n    ''1034'': &43\n    - 956\n    - 957\n    ''1035'': &44\n    - 957\n    - 958\n    ''1036'': &45\n    - 958\n    - 959\n    ''1037'': &46\n    - 959\n    - 961\n    ''1038'': &47\n    - 960\n    - 972\n    ''1039'': &48\n    - 961\n    - 962\n    ''104'': &49\n    - 96\n    - 97\n    ''1040'': &50\n    - 962\n    - 963\n    ''1041'': &51\n    - 963\n    - 964\n    ''1042'': &52\n    - 964\n    - 965\n    ''1043'': &53\n    - 965\n    - 966\n    ''1044'': &54\n    - 965\n    - 967\n    ''1045'': &55\n    - 966\n    - 967\n    ''1046'': &56\n    - 967\n    - 970\n    ''1047'': &57\n    - 967\n    - 968\n    ''1048'': &58\n    - 968\n    - 969\n    ''1049'': &59\n    - 969\n    - 970\n    ''105'': &60\n    - 97\n    - 98\n    ''1050'': &61\n    - 970\n    - 973\n    ''1051'': &62\n    - 971\n    - 3\n    ''1052'': &63\n    - 972\n    - 985\n    ''1053'': &64\n    - 972\n    - 983\n    ''1054'': &65\n    - 972\n    - 984\n    ''1055'': &66\n    - 973\n    - 974\n    ''1056'': &67\n    - 974\n    - 975\n    ''1057'': &68\n    - 975\n    - 976\n    ''1058'': &69\n    - 976\n    - 977\n    ''1059'': &70\n    - 977\n    - 978\n    ''106'': &71\n    - 98\n    - 99\n    ''1060'': &72\n    - 978\n    - 979\n    ''1061'': &73\n    - 979\n    - 980\n    ''1062'': &74\n    - 980\n    - 981\n    ''1063'': &75\n    - 981\n    - 982\n    ''1064'': &76\n    - 982\n    - 986\n    ''1065'': &77\n    - 983\n    - 997\n    ''1066'': &78\n    - 984\n    - 997\n    ''1067'': &79\n    - 985\n    - 997\n    ''1068'': &80\n    - 986\n    - 987\n    ''1069'': &81\n    - 987\n    - 988\n    ''107'': &82\n    - 99\n    - 100\n    ''1070'': &83\n    - 988\n    - 989\n    ''1071'': &84\n    - 989\n    - 990\n    ''1072'': &85\n    - 990\n    - 991\n    ''1073'': &86\n    - 990\n    - 992\n    ''1074'': &87\n    - 991\n    - 993\n    ''1075'': &88\n    - 992\n    - 994\n    ''1076'': &89\n    - 993\n    - 994\n    ''1077'': &90\n    - 994\n    - 995\n    ''1078'': &91\n    - 995\n    - 996\n    ''1079'': &92\n    - 996\n    - 998\n    ''108'': &93\n    - 100\n    - 101\n    ''1080'': &94\n    - 997\n    - 1010\n    ''1081'': &95\n    - 997\n    - 1012\n    ''1082'': &96\n    - 997\n    - 1011\n    ''1083'': &97\n    - 998\n    - 999\n    ''1084'': &98\n    - 999\n    - 1000\n    ''1085'': &99\n    - 1000\n    - 1001\n    ''1086'': &100\n    - 1001\n    - 1002\n    ''1087'': &101\n    - 1002\n    - 1003\n    ''1088'': &102\n    - 1002\n    - 1004\n    ''1089'': &103\n    - 1003\n    - 1005\n    ''109'': &104\n    - 101\n    - 103\n    ''1090'': &105\n    - 1004\n    - 1005\n    ''1091'': &106\n    - 1005\n    - 1007\n    ''1092'': &107\n    - 1005\n    - 1006\n    ''1093'': &108\n    - 1006\n    - 1008\n    ''1094'': &109\n    - 1007\n    - 1008\n    ''1095'': &110\n    - 1008\n    - 1009\n    ''1096'': &111\n    - 1009\n    - 1013\n    ''1097'': &112\n    - 1010\n    - 1023\n    ''1098'': &113\n    - 1010\n    - 1034\n    ''1099'': &114\n    - 1011\n    - 1034\n    ''11'': &115\n    - 10\n    - 12\n    ''110'': &116\n    - 101\n    - 104\n    ''1100'': &117\n    - 1012\n    - 1023\n    ''1101'': &118\n    - 1013\n    - 1014\n    ''1102'': &119\n    - 1014\n    - 1015\n    ''1103'': &120\n    - 1015\n    - 1016\n    ''1104'': &121\n    - 1016\n    - 1017\n    ''1105'': &122\n    - 1017\n    - 1018\n    ''1106'': &123\n    - 1018\n    - 1019\n    ''1107'': &124\n    - 1019\n    - 1020\n    ''1108'': &125\n    - 1020\n    - 1021\n    ''1109'': &126\n    - 1021\n    - 1022\n    ''111'': &127\n    - 102\n    - 114\n    ''1110'': &128\n    - 1022\n    - 1024\n    ''1111'': &129\n    - 1023\n    - 1034\n    ''1112'': &130\n    - 1024\n    - 1025\n    ''1113'': &131\n    - 1025\n    - 1026\n    ''1114'': &132\n    - 1026\n    - 1027\n    ''1115'': &133\n    - 1027\n    - 1028\n    ''1116'': &134\n    - 1028\n    - 1029\n    ''1117'': &135\n    - 1029\n    - 1030\n    ''1118'': &136\n    - 1030\n    - 1031\n    ''1119'': &137\n    - 1031\n    - 1032\n    ''112'': &138\n    - 103\n    - 105\n    ''1120'': &139\n    - 1032\n    - 1033\n    ''1121'': &140\n    - 1033\n    - 1035\n    ''1122'': &141\n    - 1034\n    - 1046\n    ''1123'': &142\n    - 1035\n    - 1036\n    ''1124'': &143\n    - 1036\n    - 1038\n    ''1125'': &144\n    - 1036\n    - 1037\n    ''1126'': &145\n    - 1037\n    - 1038\n    ''1127'': &146\n    - 1038\n    - 1039\n    ''1128'': &147\n    - 1038\n    - 1040\n    ''1129'': &148\n    - 1039\n    - 1041\n    ''113'': &149\n    - 104\n    - 105\n    ''1130'': &150\n    - 1040\n    - 1041\n    ''1131'': &151\n    - 1041\n    - 1042\n    ''1132'': &152\n    - 1042\n    - 1043\n    ''1133'': &153\n    - 1043\n    - 1044\n    ''1134'': &154\n    - 1044\n    - 1045\n    ''1135'': &155\n    - 1045\n    - 1047\n    ''1136'': &156\n    - 1046\n    - 1059\n    ''1137'': &157\n    - 1047\n    - 1048\n    ''1138'': &158\n    - 1048\n    - 1049\n    ''1139'': &159\n    - 1049\n    - 1050\n    ''114'': &160\n    - 105\n    - 106\n    ''1140'': &161\n    - 1050\n    - 1051\n    ''1141'': &162\n    - 1051\n    - 1052\n    ''1142'': &163\n    - 1052\n    - 1053\n    ''1143'': &164\n    - 1053\n    - 1054\n    ''1144'': &165\n    - 1054\n    - 1055\n    ''1145'': &166\n    - 1055\n    - 1056\n    ''1146'': &167\n    - 1055\n    - 1058\n    ''1147'': &168\n    - 1055\n    - 1057\n    ''1148'': &169\n    - 1056\n    - 1060\n    ''1149'': &170\n    - 1057\n    - 1060\n    ''115'': &171\n    - 106\n    - 107\n    ''1150'': &172\n    - 1058\n    - 1060\n    ''1151'': &173\n    - 1059\n    - 1072\n    ''1152'': &174\n    - 1060\n    - 1061\n    ''1153'': &175\n    - 1061\n    - 1062\n    ''1154'': &176\n    - 1061\n    - 1064\n    ''1155'': &177\n    - 1062\n    - 1063\n    ''1156'': &178\n    - 1063\n    - 1066\n    ''1157'': &179\n    - 1064\n    - 1065\n    ''1158'': &180\n    - 1064\n    - 1066\n    ''1159'': &181\n    - 1065\n    - 1067\n    ''116'': &182\n    - 107\n    - 108\n    ''1160'': &183\n    - 1066\n    - 1067\n    ''1161'': &184\n    - 1067\n    - 1068\n    ''1162'': &185\n    - 1068\n    - 1069\n    ''1163'': &186\n    - 1069\n    - 1070\n    ''1164'': &187\n    - 1070\n    - 1071\n    ''1165'': &188\n    - 1071\n    - 1073\n    ''1166'': &189\n    - 1072\n    - 1084\n    ''1167'': &190\n    - 1072\n    - 1083\n    ''1168'': &191\n    - 1073\n    - 1074\n    ''1169'': &192\n    - 1074\n    - 1075\n    ''117'': &193\n    - 108\n    - 109\n    ''1170'': &194\n    - 1075\n    - 1076\n    ''1171'': &195\n    - 1076\n    - 1077\n    ''1172'': &196\n    - 1077\n    - 1078\n    ''1173'': &197\n    - 1078\n    - 1079\n    ''1174'': &198\n    - 1079\n    - 1080\n    ''1175'': &199\n    - 1080\n    - 1081\n    ''1176'': &200\n    - 1081\n    - 1082\n    ''1177'': &201\n    - 1082\n    - 1085\n    ''1178'': &202\n    - 1083\n    - 4\n    ''1179'': &203\n    - 1084\n    - 4\n    ''118'': &204\n    - 109\n    - 110\n    ''1180'': &205\n    - 1085\n    - 1086\n    ''1181'': &206\n    - 1086\n    - 1087\n    ''1182'': &207\n    - 1087\n    - 1088\n    ''1183'': &208\n    - 1088\n    - 1089\n    ''1184'': &209\n    - 1089\n    - 1090\n    ''1185'': &210\n    - 1090\n    - 1091\n    ''1186'': &211\n    - 1091\n    - 1092\n    ''1187'': &212\n    - 1092\n    - 1093\n    ''1188'': &213\n    - 1093\n    - 1094\n    ''1189'': &214\n    - 1094\n    - 5\n    ''119'': &215\n    - 110\n    - 111\n    ''12'': &216\n    - 11\n    - 12\n    ''120'': &217\n    - 111\n    - 112\n    ''121'': &218\n    - 112\n    - 113\n    ''122'': &219\n    - 113\n    - 115\n    ''123'': &220\n    - 114\n    - 126\n    ''124'': &221\n    - 115\n    - 116\n    ''125'': &222\n    - 116\n    - 118\n    ''126'': &223\n    - 116\n    - 117\n    ''127'': &224\n    - 117\n    - 119\n    ''128'': &225\n    - 118\n    - 119\n    ''129'': &226\n    - 119\n    - 120\n    ''13'': &227\n    - 12\n    - 13\n    ''130'': &228\n    - 120\n    - 121\n    ''131'': &229\n    - 121\n    - 122\n    ''132'': &230\n    - 122\n    - 123\n    ''133'': &231\n    - 123\n    - 124\n    ''134'': &232\n    - 124\n    - 125\n    ''135'': &233\n    - 125\n    - 127\n    ''136'': &234\n    - 126\n    - 139\n    ''137'': &235\n    - 127\n    - 128\n    ''138'': &236\n    - 128\n    - 129\n    ''139'': &237\n    - 129\n    - 130\n    ''14'': &238\n    - 13\n    - 14\n    ''140'': &239\n    - 130\n    - 131\n    ''141'': &240\n    - 131\n    - 132\n    ''142'': &241\n    - 132\n    - 133\n    ''143'': &242\n    - 133\n    - 134\n    ''144'': &243\n    - 134\n    - 135\n    ''145'': &244\n    - 135\n    - 136\n    ''146'': &245\n    - 136\n    - 140\n    ''147'': &246\n    - 137\n    - 385\n    ''148'': &247\n    - 137\n    - 260\n    ''149'': &248\n    - 138\n    - 260\n    ''15'': &249\n    - 14\n    - 15\n    ''150'': &250\n    - 139\n    - 154\n    ''151'': &251\n    - 140\n    - 141\n    ''152'': &252\n    - 141\n    - 142\n    ''153'': &253\n    - 142\n    - 143\n    ''154'': &254\n    - 143\n    - 144\n    ''155'': &255\n    - 144\n    - 149\n    ''156'': &256\n    - 144\n    - 148\n    ''157'': &257\n    - 144\n    - 147\n    ''158'': &258\n    - 144\n    - 145\n    ''159'': &259\n    - 144\n    - 146\n    ''16'': &260\n    - 15\n    - 16\n    ''160'': &261\n    - 145\n    - 150\n    ''161'': &262\n    - 146\n    - 150\n    ''162'': &263\n    - 147\n    - 150\n    ''163'': &264\n    - 148\n    - 150\n    ''164'': &265\n    - 149\n    - 150\n    ''165'': &266\n    - 150\n    - 151\n    ''166'': &267\n    - 151\n    - 152\n    ''167'': &268\n    - 152\n    - 153\n    ''168'': &269\n    - 153\n    - 155\n    ''169'': &270\n    - 154\n    - 166\n    ''17'': &271\n    - 16\n    - 18\n    ''170'': &272\n    - 155\n    - 156\n    ''171'': &273\n    - 156\n    - 157\n    ''172'': &274\n    - 157\n    - 158\n    ''173'': &275\n    - 158\n    - 159\n    ''174'': &276\n    - 159\n    - 160\n    ''175'': &277\n    - 160\n    - 161\n    ''176'': &278\n    - 161\n    - 162\n    ''177'': &279\n    - 162\n    - 163\n    ''178'': &280\n    - 163\n    - 165\n    ''179'': &281\n    - 163\n    - 164\n    ''18'': &282\n    - 17\n    - 23\n    ''180'': &283\n    - 164\n    - 167\n    ''181'': &284\n    - 165\n    - 167\n    ''182'': &285\n    - 166\n    - 177\n    ''183'': &286\n    - 167\n    - 168\n    ''184'': &287\n    - 168\n    - 169\n    ''185'': &288\n    - 169\n    - 170\n    ''186'': &289\n    - 170\n    - 171\n    ''187'': &290\n    - 171\n    - 172\n    ''188'': &291\n    - 172\n    - 173\n    ''189'': &292\n    - 173\n    - 174\n    ''19'': &293\n    - 18\n    - 19\n    ''190'': &294\n    - 174\n    - 175\n    ''191'': &295\n    - 175\n    - 176\n    ''192'': &296\n    - 176\n    - 178\n    ''193'': &297\n    - 177\n    - 189\n    ''194'': &298\n    - 178\n    - 179\n    ''195'': &299\n    - 179\n    - 180\n    ''196'': &300\n    - 180\n    - 181\n    ''197'': &301\n    - 181\n    - 182\n    ''198'': &302\n    - 182\n    - 183\n    ''199'': &303\n    - 183\n    - 184\n    ''2'': &304\n    - 2\n    - 138\n    ''20'': &305\n    - 19\n    - 20\n    ''200'': &306\n    - 184\n    - 185\n    ''201'': &307\n    - 185\n    - 186\n    ''202'': &308\n    - 186\n    - 188\n    ''203'': &309\n    - 186\n    - 187\n    ''204'': &310\n    - 187\n    - 190\n    ''205'': &311\n    - 188\n    - 190\n    ''206'': &312\n    - 189\n    - 202\n    ''207'': &313\n    - 190\n    - 191\n    ''208'': &314\n    - 191\n    - 192\n    ''209'': &315\n    - 192\n    - 193\n    ''21'': &316\n    - 20\n    - 22\n    ''210'': &317\n    - 193\n    - 195\n    ''211'': &318\n    - 193\n    - 194\n    ''212'': &319\n    - 194\n    - 197\n    ''213'': &320\n    - 195\n    - 197\n    ''214'': &321\n    - 195\n    - 196\n    ''215'': &322\n    - 196\n    - 198\n    ''216'': &323\n    - 197\n    - 198\n    ''217'': &324\n    - 198\n    - 199\n    ''218'': &325\n    - 199\n    - 200\n    ''219'': &326\n    - 200\n    - 201\n    ''22'': &327\n    - 20\n    - 21\n    ''220'': &328\n    - 201\n    - 203\n    ''221'': &329\n    - 202\n    - 214\n    ''222'': &330\n    - 203\n    - 204\n    ''223'': &331\n    - 203\n    - 205\n    ''224'': &332\n    - 204\n    - 207\n    ''225'': &333\n    - 205\n    - 206\n    ''226'': &334\n    - 206\n    - 207\n    ''227'': &335\n    - 207\n    - 208\n    ''228'': &336\n    - 208\n    - 209\n    ''229'': &337\n    - 209\n    - 210\n    ''23'': &338\n    - 21\n    - 1\n    ''230'': &339\n    - 210\n    - 211\n    ''231'': &340\n    - 211\n    - 212\n    ''232'': &341\n    - 212\n    - 213\n    ''233'': &342\n    - 213\n    - 215\n    ''234'': &343\n    - 214\n    - 225\n    ''235'': &344\n    - 215\n    - 216\n    ''236'': &345\n    - 216\n    - 217\n    ''237'': &346\n    - 217\n    - 218\n    ''238'': &347\n    - 218\n    - 219\n    ''239'': &348\n    - 219\n    - 220\n    ''24'': &349\n    - 22\n    - 1\n    ''240'': &350\n    - 220\n    - 221\n    ''241'': &351\n    - 221\n    - 222\n    ''242'': &352\n    - 222\n    - 223\n    ''243'': &353\n    - 223\n    - 224\n    ''244'': &354\n    - 224\n    - 226\n    ''245'': &355\n    - 225\n    - 236\n    ''246'': &356\n    - 225\n    - 247\n    ''247'': &357\n    - 226\n    - 227\n    ''248'': &358\n    - 227\n    - 228\n    ''249'': &359\n    - 228\n    - 229\n    ''25'': &360\n    - 23\n    - 24\n    ''250'': &361\n    - 229\n    - 230\n    ''251'': &362\n    - 230\n    - 231\n    ''252'': &363\n    - 231\n    - 232\n    ''253'': &364\n    - 232\n    - 233\n    ''254'': &365\n    - 233\n    - 234\n    ''255'': &366\n    - 234\n    - 235\n    ''256'': &367\n    - 235\n    - 237\n    ''257'': &368\n    - 236\n    - 247\n    ''258'': &369\n    - 237\n    - 238\n    ''259'': &370\n    - 238\n    - 239\n    ''26'': &371\n    - 24\n    - 25\n    ''260'': &372\n    - 239\n    - 240\n    ''261'': &373\n    - 240\n    - 241\n    ''262'': &374\n    - 241\n    - 242\n    ''263'': &375\n    - 242\n    - 243\n    ''264'': &376\n    - 243\n    - 244\n    ''265'': &377\n    - 244\n    - 245\n    ''266'': &378\n    - 245\n    - 246\n    ''267'': &379\n    - 246\n    - 248\n    ''268'': &380\n    - 247\n    - 261\n    ''269'': &381\n    - 248\n    - 249\n    ''27'': &382\n    - 25\n    - 26\n    ''270'': &383\n    - 249\n    - 250\n    ''271'': &384\n    - 250\n    - 252\n    ''272'': &385\n    - 250\n    - 251\n    ''273'': &386\n    - 251\n    - 253\n    ''274'': &387\n    - 252\n    - 253\n    ''275'': &388\n    - 253\n    - 254\n    ''276'': &389\n    - 253\n    - 255\n    ''277'': &390\n    - 254\n    - 256\n    ''278'': &391\n    - 255\n    - 256\n    ''279'': &392\n    - 256\n    - 257\n    ''28'': &393\n    - 26\n    - 27\n    ''280'': &394\n    - 257\n    - 258\n    ''281'': &395\n    - 258\n    - 259\n    ''282'': &396\n    - 259\n    - 262\n    ''283'': &397\n    - 260\n    - 385\n    ''284'': &398\n    - 261\n    - 273\n    ''285'': &399\n    - 262\n    - 263\n    ''286'': &400\n    - 263\n    - 264\n    ''287'': &401\n    - 264\n    - 265\n    ''288'': &402\n    - 265\n    - 266\n    ''289'': &403\n    - 266\n    - 267\n    ''29'': &404\n    - 27\n    - 28\n    ''290'': &405\n    - 267\n    - 268\n    ''291'': &406\n    - 268\n    - 269\n    ''292'': &407\n    - 269\n    - 270\n    ''293'': &408\n    - 270\n    - 271\n    ''294'': &409\n    - 270\n    - 272\n    ''295'': &410\n    - 271\n    - 275\n    ''296'': &411\n    - 272\n    - 275\n    ''297'': &412\n    - 272\n    - 274\n    ''298'': &413\n    - 273\n    - 288\n    ''299'': &414\n    - 274\n    - 276\n    ''3'': &415\n    - 3\n    - 31\n    ''30'': &416\n    - 28\n    - 29\n    ''300'': &417\n    - 275\n    - 276\n    ''301'': &418\n    - 276\n    - 277\n    ''302'': &419\n    - 277\n    - 278\n    ''303'': &420\n    - 278\n    - 281\n    ''304'': &421\n    - 278\n    - 279\n    ''305'': &422\n    - 279\n    - 280\n    ''306'': &423\n    - 280\n    - 281\n    ''307'': &424\n    - 281\n    - 282\n    ''308'': &425\n    - 281\n    - 283\n    ''309'': &426\n    - 282\n    - 285\n    ''31'': &427\n    - 29\n    - 30\n    ''310'': &428\n    - 283\n    - 284\n    ''311'': &429\n    - 283\n    - 285\n    ''312'': &430\n    - 284\n    - 287\n    ''313'': &431\n    - 285\n    - 287\n    ''314'': &432\n    - 285\n    - 286\n    ''315'': &433\n    - 286\n    - 289\n    ''316'': &434\n    - 287\n    - 289\n    ''317'': &435\n    - 288\n    - 301\n    ''318'': &436\n    - 289\n    - 290\n    ''319'': &437\n    - 290\n    - 291\n    ''32'': &438\n    - 30\n    - 32\n    ''320'': &439\n    - 291\n    - 292\n    ''321'': &440\n    - 292\n    - 294\n    ''322'': &441\n    - 292\n    - 293\n    ''323'': &442\n    - 293\n    - 295\n    ''324'': &443\n    - 294\n    - 295\n    ''325'': &444\n    - 295\n    - 296\n    ''326'': &445\n    - 296\n    - 297\n    ''327'': &446\n    - 297\n    - 299\n    ''328'': &447\n    - 297\n    - 298\n    ''329'': &448\n    - 298\n    - 300\n    ''33'': &449\n    - 30\n    - 33\n    ''330'': &450\n    - 299\n    - 300\n    ''331'': &451\n    - 300\n    - 302\n    ''332'': &452\n    - 301\n    - 313\n    ''333'': &453\n    - 302\n    - 303\n    ''334'': &454\n    - 303\n    - 304\n    ''335'': &455\n    - 304\n    - 305\n    ''336'': &456\n    - 305\n    - 307\n    ''337'': &457\n    - 305\n    - 306\n    ''338'': &458\n    - 306\n    - 308\n    ''339'': &459\n    - 306\n    - 307\n    ''34'': &460\n    - 31\n    - 43\n    ''340'': &461\n    - 307\n    - 309\n    ''341'': &462\n    - 308\n    - 309\n    ''342'': &463\n    - 309\n    - 310\n    ''343'': &464\n    - 310\n    - 311\n    ''344'': &465\n    - 311\n    - 312\n    ''345'': &466\n    - 312\n    - 314\n    ''346'': &467\n    - 313\n    - 324\n    ''347'': &468\n    - 314\n    - 315\n    ''348'': &469\n    - 315\n    - 316\n    ''349'': &470\n    - 316\n    - 317\n    ''35'': &471\n    - 32\n    - 34\n    ''350'': &472\n    - 317\n    - 318\n    ''351'': &473\n    - 318\n    - 319\n    ''352'': &474\n    - 319\n    - 320\n    ''353'': &475\n    - 320\n    - 321\n    ''354'': &476\n    - 321\n    - 322\n    ''355'': &477\n    - 322\n    - 323\n    ''356'': &478\n    - 323\n    - 325\n    ''357'': &479\n    - 323\n    - 326\n    ''358'': &480\n    - 324\n    - 336\n    ''359'': &481\n    - 325\n    - 327\n    ''36'': &482\n    - 33\n    - 34\n    ''360'': &483\n    - 326\n    - 327\n    ''361'': &484\n    - 327\n    - 328\n    ''362'': &485\n    - 328\n    - 329\n    ''363'': &486\n    - 329\n    - 330\n    ''364'': &487\n    - 330\n    - 331\n    ''365'': &488\n    - 331\n    - 332\n    ''366'': &489\n    - 332\n    - 333\n    ''367'': &490\n    - 333\n    - 334\n    ''368'': &491\n    - 334\n    - 335\n    ''369'': &492\n    - 335\n    - 337\n    ''37'': &493\n    - 34\n    - 35\n    ''370'': &494\n    - 336\n    - 348\n    ''371'': &495\n    - 337\n    - 338\n    ''372'': &496\n    - 337\n    - 339\n    ''373'': &497\n    - 338\n    - 340\n    ''374'': &498\n    - 339\n    - 340\n    ''375'': &499\n    - 340\n    - 341\n    ''376'': &500\n    - 341\n    - 342\n    ''377'': &501\n    - 342\n    - 343\n    ''378'': &502\n    - 343\n    - 344\n    ''379'': &503\n    - 344\n    - 345\n    ''38'': &504\n    - 35\n    - 36\n    ''380'': &505\n    - 344\n    - 346\n    ''381'': &506\n    - 345\n    - 346\n    ''382'': &507\n    - 346\n    - 347\n    ''383'': &508\n    - 347\n    - 349\n    ''384'': &509\n    - 347\n    - 350\n    ''385'': &510\n    - 348\n    - 360\n    ''386'': &511\n    - 349\n    - 351\n    ''387'': &512\n    - 350\n    - 351\n    ''388'': &513\n    - 351\n    - 352\n    ''389'': &514\n    - 352\n    - 353\n    ''39'': &515\n    - 36\n    - 37\n    ''390'': &516\n    - 353\n    - 354\n    ''391'': &517\n    - 354\n    - 355\n    ''392'': &518\n    - 355\n    - 356\n    ''393'': &519\n    - 356\n    - 357\n    ''394'': &520\n    - 357\n    - 358\n    ''395'': &521\n    - 358\n    - 359\n    ''396'': &522\n    - 359\n    - 361\n    ''397'': &523\n    - 360\n    - 374\n    ''398'': &524\n    - 360\n    - 373\n    ''399'': &525\n    - 361\n    - 362\n    ''4'': &526\n    - 4\n    - 17\n    ''40'': &527\n    - 37\n    - 38\n    ''400'': &528\n    - 362\n    - 363\n    ''401'': &529\n    - 362\n    - 364\n    ''402'': &530\n    - 363\n    - 365\n    ''403'': &531\n    - 364\n    - 365\n    ''404'': &532\n    - 365\n    - 366\n    ''405'': &533\n    - 366\n    - 367\n    ''406'': &534\n    - 366\n    - 368\n    ''407'': &535\n    - 367\n    - 369\n    ''408'': &536\n    - 368\n    - 369\n    ''409'': &537\n    - 369\n    - 370\n    ''41'': &538\n    - 38\n    - 39\n    ''410'': &539\n    - 370\n    - 371\n    ''411'': &540\n    - 371\n    - 372\n    ''412'': &541\n    - 372\n    - 375\n    ''413'': &542\n    - 373\n    - 386\n    ''414'': &543\n    - 374\n    - 386\n    ''415'': &544\n    - 375\n    - 376\n    ''416'': &545\n    - 376\n    - 377\n    ''417'': &546\n    - 377\n    - 378\n    ''418'': &547\n    - 378\n    - 379\n    ''419'': &548\n    - 379\n    - 380\n    ''42'': &549\n    - 39\n    - 40\n    ''420'': &550\n    - 380\n    - 381\n    ''421'': &551\n    - 381\n    - 382\n    ''422'': &552\n    - 382\n    - 383\n    ''423'': &553\n    - 383\n    - 384\n    ''424'': &554\n    - 384\n    - 387\n    ''425'': &555\n    - 385\n    - 505\n    ''426'': &556\n    - 386\n    - 398\n    ''427'': &557\n    - 387\n    - 388\n    ''428'': &558\n    - 388\n    - 389\n    ''429'': &559\n    - 389\n    - 390\n    ''43'': &560\n    - 39\n    - 41\n    ''430'': &561\n    - 390\n    - 391\n    ''431'': &562\n    - 391\n    - 392\n    ''432'': &563\n    - 392\n    - 393\n    ''433'': &564\n    - 392\n    - 394\n    ''434'': &565\n    - 393\n    - 395\n    ''435'': &566\n    - 394\n    - 395\n    ''436'': &567\n    - 395\n    - 396\n    ''437'': &568\n    - 396\n    - 397\n    ''438'': &569\n    - 397\n    - 399\n    ''439'': &570\n    - 398\n    - 412\n    ''44'': &571\n    - 40\n    - 41\n    ''440'': &572\n    - 399\n    - 400\n    ''441'': &573\n    - 400\n    - 401\n    ''442'': &574\n    - 401\n    - 403\n    ''443'': &575\n    - 401\n    - 402\n    ''444'': &576\n    - 402\n    - 404\n    ''445'': &577\n    - 403\n    - 404\n    ''446'': &578\n    - 404\n    - 405\n    ''447'': &579\n    - 405\n    - 406\n    ''448'': &580\n    - 406\n    - 407\n    ''449'': &581\n    - 406\n    - 408\n    ''45'': &582\n    - 41\n    - 42\n    ''450'': &583\n    - 407\n    - 409\n    ''451'': &584\n    - 407\n    - 410\n    ''452'': &585\n    - 408\n    - 409\n    ''453'': &586\n    - 409\n    - 411\n    ''454'': &587\n    - 410\n    - 411\n    ''455'': &588\n    - 411\n    - 413\n    ''456'': &589\n    - 412\n    - 423\n    ''457'': &590\n    - 413\n    - 414\n    ''458'': &591\n    - 414\n    - 415\n    ''459'': &592\n    - 415\n    - 416\n    ''46'': &593\n    - 42\n    - 44\n    ''460'': &594\n    - 416\n    - 417\n    ''461'': &595\n    - 417\n    - 418\n    ''462'': &596\n    - 418\n    - 419\n    ''463'': &597\n    - 419\n    - 420\n    ''464'': &598\n    - 420\n    - 421\n    ''465'': &599\n    - 421\n    - 422\n    ''466'': &600\n    - 422\n    - 424\n    ''467'': &601\n    - 423\n    - 434\n    ''468'': &602\n    - 424\n    - 425\n    ''469'': &603\n    - 425\n    - 426\n    ''47'': &604\n    - 43\n    - 54\n    ''470'': &605\n    - 426\n    - 427\n    ''471'': &606\n    - 427\n    - 428\n    ''472'': &607\n    - 428\n    - 429\n    ''473'': &608\n    - 429\n    - 430\n    ''474'': &609\n    - 430\n    - 431\n    ''475'': &610\n    - 431\n    - 432\n    ''476'': &611\n    - 432\n    - 433\n    ''477'': &612\n    - 433\n    - 435\n    ''478'': &613\n    - 434\n    - 445\n    ''479'': &614\n    - 435\n    - 436\n    ''48'': &615\n    - 44\n    - 45\n    ''480'': &616\n    - 436\n    - 437\n    ''481'': &617\n    - 437\n    - 438\n    ''482'': &618\n    - 438\n    - 439\n    ''483'': &619\n    - 439\n    - 440\n    ''484'': &620\n    - 440\n    - 441\n    ''485'': &621\n    - 441\n    - 442\n    ''486'': &622\n    - 442\n    - 443\n    ''487'': &623\n    - 443\n    - 444\n    ''488'': &624\n    - 444\n    - 446\n    ''489'': &625\n    - 445\n    - 457\n    ''49'': &626\n    - 45\n    - 46\n    ''490'': &627\n    - 446\n    - 447\n    ''491'': &628\n    - 447\n    - 448\n    ''492'': &629\n    - 448\n    - 449\n    ''493'': &630\n    - 449\n    - 450\n    ''494'': &631\n    - 450\n    - 451\n    ''495'': &632\n    - 451\n    - 452\n    ''496'': &633\n    - 452\n    - 453\n    ''497'': &634\n    - 453\n    - 454\n    ''498'': &635\n    - 454\n    - 455\n    ''499'': &636\n    - 454\n    - 456\n    ''5'': &637\n    - 5\n    - 6\n    ''50'': &638\n    - 46\n    - 47\n    ''500'': &639\n    - 455\n    - 458\n    ''501'': &640\n    - 456\n    - 458\n    ''502'': &641\n    - 457\n    - 468\n    ''503'': &642\n    - 458\n    - 459\n    ''504'': &643\n    - 459\n    - 460\n    ''505'': &644\n    - 460\n    - 461\n    ''506'': &645\n    - 461\n    - 462\n    ''507'': &646\n    - 462\n    - 463\n    ''508'': &647\n    - 463\n    - 464\n    ''509'': &648\n    - 464\n    - 465\n    ''51'': &649\n    - 47\n    - 48\n    ''510'': &650\n    - 465\n    - 466\n    ''511'': &651\n    - 466\n    - 467\n    ''512'': &652\n    - 467\n    - 469\n    ''513'': &653\n    - 468\n    - 479\n    ''514'': &654\n    - 469\n    - 470\n    ''515'': &655\n    - 470\n    - 471\n    ''516'': &656\n    - 471\n    - 472\n    ''517'': &657\n    - 472\n    - 473\n    ''518'': &658\n    - 473\n    - 474\n    ''519'': &659\n    - 474\n    - 475\n    ''52'': &660\n    - 48\n    - 49\n    ''520'': &661\n    - 475\n    - 476\n    ''521'': &662\n    - 476\n    - 477\n    ''522'': &663\n    - 477\n    - 478\n    ''523'': &664\n    - 478\n    - 480\n    ''524'': &665\n    - 479\n    - 490\n    ''525'': &666\n    - 480\n    - 481\n    ''526'': &667\n    - 481\n    - 482\n    ''527'': &668\n    - 482\n    - 483\n    ''528'': &669\n    - 483\n    - 484\n    ''529'': &670\n    - 484\n    - 485\n    ''53'': &671\n    - 49\n    - 50\n    ''530'': &672\n    - 485\n    - 486\n    ''531'': &673\n    - 486\n    - 487\n    ''532'': &674\n    - 487\n    - 488\n    ''533'': &675\n    - 488\n    - 489\n    ''534'': &676\n    - 489\n    - 491\n    ''535'': &677\n    - 490\n    - 506\n    ''536'': &678\n    - 491\n    - 492\n    ''537'': &679\n    - 492\n    - 493\n    ''538'': &680\n    - 493\n    - 497\n    ''539'': &681\n    - 493\n    - 496\n    ''54'': &682\n    - 50\n    - 51\n    ''540'': &683\n    - 493\n    - 494\n    ''541'': &684\n    - 493\n    - 495\n    ''542'': &685\n    - 494\n    - 498\n    ''543'': &686\n    - 495\n    - 498\n    ''544'': &687\n    - 496\n    - 498\n    ''545'': &688\n    - 497\n    - 498\n    ''546'': &689\n    - 498\n    - 499\n    ''547'': &690\n    - 499\n    - 500\n    ''548'': &691\n    - 500\n    - 501\n    ''549'': &692\n    - 500\n    - 502\n    ''55'': &693\n    - 51\n    - 52\n    ''550'': &694\n    - 501\n    - 503\n    ''551'': &695\n    - 502\n    - 503\n    ''552'': &696\n    - 503\n    - 504\n    ''553'': &697\n    - 503\n    - 508\n    ''554'': &698\n    - 504\n    - 507\n    ''555'': &699\n    - 504\n    - 508\n    ''556'': &700\n    - 505\n    - 622\n    ''557'': &701\n    - 506\n    - 518\n    ''558'': &702\n    - 507\n    - 509\n    ''559'': &703\n    - 508\n    - 509\n    ''56'': &704\n    - 52\n    - 53\n    ''560'': &705\n    - 509\n    - 510\n    ''561'': &706\n    - 510\n    - 511\n    ''562'': &707\n    - 511\n    - 512\n    ''563'': &708\n    - 512\n    - 513\n    ''564'': &709\n    - 513\n    - 514\n    ''565'': &710\n    - 514\n    - 515\n    ''566'': &711\n    - 515\n    - 516\n    ''567'': &712\n    - 516\n    - 517\n    ''568'': &713\n    - 517\n    - 519\n    ''569'': &714\n    - 518\n    - 530\n    ''57'': &715\n    - 53\n    - 55\n    ''570'': &716\n    - 519\n    - 520\n    ''571'': &717\n    - 520\n    - 521\n    ''572'': &718\n    - 521\n    - 522\n    ''573'': &719\n    - 522\n    - 523\n    ''574'': &720\n    - 523\n    - 525\n    ''575'': &721\n    - 523\n    - 524\n    ''576'': &722\n    - 524\n    - 526\n    ''577'': &723\n    - 525\n    - 526\n    ''578'': &724\n    - 526\n    - 527\n    ''579'': &725\n    - 527\n    - 528\n    ''58'': &726\n    - 54\n    - 66\n    ''580'': &727\n    - 528\n    - 529\n    ''581'': &728\n    - 529\n    - 531\n    ''582'': &729\n    - 530\n    - 541\n    ''583'': &730\n    - 531\n    - 532\n    ''584'': &731\n    - 532\n    - 533\n    ''585'': &732\n    - 533\n    - 534\n    ''586'': &733\n    - 534\n    - 535\n    ''587'': &734\n    - 535\n    - 536\n    ''588'': &735\n    - 536\n    - 537\n    ''589'': &736\n    - 537\n    - 538\n    ''59'': &737\n    - 55\n    - 56\n    ''590'': &738\n    - 538\n    - 539\n    ''591'': &739\n    - 539\n    - 540\n    ''592'': &740\n    - 540\n    - 542\n    ''593'': &741\n    - 541\n    - 552\n    ''594'': &742\n    - 542\n    - 543\n    ''595'': &743\n    - 543\n    - 544\n    ''596'': &744\n    - 544\n    - 545\n    ''597'': &745\n    - 545\n    - 546\n    ''598'': &746\n    - 546\n    - 547\n    ''599'': &747\n    - 547\n    - 548\n    ''6'': &748\n    - 6\n    - 7\n    ''60'': &749\n    - 56\n    - 57\n    ''600'': &750\n    - 548\n    - 549\n    ''601'': &751\n    - 549\n    - 550\n    ''602'': &752\n    - 550\n    - 551\n    ''603'': &753\n    - 551\n    - 553\n    ''604'': &754\n    - 552\n    - 563\n    ''605'': &755\n    - 553\n    - 554\n    ''606'': &756\n    - 554\n    - 555\n    ''607'': &757\n    - 555\n    - 556\n    ''608'': &758\n    - 556\n    - 557\n    ''609'': &759\n    - 557\n    - 558\n    ''61'': &760\n    - 57\n    - 58\n    ''610'': &761\n    - 558\n    - 559\n    ''611'': &762\n    - 559\n    - 560\n    ''612'': &763\n    - 560\n    - 561\n    ''613'': &764\n    - 561\n    - 562\n    ''614'': &765\n    - 562\n    - 564\n    ''615'': &766\n    - 563\n    - 576\n    ''616'': &767\n    - 564\n    - 565\n    ''617'': &768\n    - 565\n    - 566\n    ''618'': &769\n    - 566\n    - 567\n    ''619'': &770\n    - 567\n    - 568\n    ''62'': &771\n    - 58\n    - 59\n    ''620'': &772\n    - 568\n    - 569\n    ''621'': &773\n    - 569\n    - 570\n    ''622'': &774\n    - 569\n    - 571\n    ''623'': &775\n    - 570\n    - 572\n    ''624'': &776\n    - 571\n    - 572\n    ''625'': &777\n    - 572\n    - 573\n    ''626'': &778\n    - 572\n    - 574\n    ''627'': &779\n    - 573\n    - 575\n    ''628'': &780\n    - 574\n    - 575\n    ''629'': &781\n    - 575\n    - 577\n    ''63'': &782\n    - 59\n    - 60\n    ''630'': &783\n    - 576\n    - 587\n    ''631'': &784\n    - 577\n    - 578\n    ''632'': &785\n    - 578\n    - 579\n    ''633'': &786\n    - 579\n    - 580\n    ''634'': &787\n    - 580\n    - 581\n    ''635'': &788\n    - 581\n    - 582\n    ''636'': &789\n    - 582\n    - 583\n    ''637'': &790\n    - 583\n    - 584\n    ''638'': &791\n    - 584\n    - 585\n    ''639'': &792\n    - 585\n    - 586\n    ''64'': &793\n    - 60\n    - 61\n    ''640'': &794\n    - 586\n    - 588\n    ''641'': &795\n    - 587\n    - 598\n    ''642'': &796\n    - 588\n    - 589\n    ''643'': &797\n    - 589\n    - 590\n    ''644'': &798\n    - 590\n    - 591\n    ''645'': &799\n    - 591\n    - 592\n    ''646'': &800\n    - 592\n    - 593\n    ''647'': &801\n    - 593\n    - 594\n    ''648'': &802\n    - 594\n    - 595\n    ''649'': &803\n    - 595\n    - 596\n    ''65'': &804\n    - 60\n    - 62\n    ''650'': &805\n    - 596\n    - 597\n    ''651'': &806\n    - 597\n    - 599\n    ''652'': &807\n    - 598\n    - 610\n    ''653'': &808\n    - 599\n    - 600\n    ''654'': &809\n    - 600\n    - 601\n    ''655'': &810\n    - 601\n    - 602\n    ''656'': &811\n    - 602\n    - 603\n    ''657'': &812\n    - 603\n    - 604\n    ''658'': &813\n    - 604\n    - 606\n    ''659'': &814\n    - 604\n    - 605\n    ''66'': &815\n    - 61\n    - 63\n    ''660'': &816\n    - 605\n    - 1\n    ''661'': &817\n    - 606\n    - 607\n    ''662'': &818\n    - 607\n    - 608\n    ''663'': &819\n    - 608\n    - 609\n    ''664'': &820\n    - 609\n    - 611\n    ''665'': &821\n    - 610\n    - 623\n    ''666'': &822\n    - 611\n    - 612\n    ''667'': &823\n    - 612\n    - 613\n    ''668'': &824\n    - 613\n    - 614\n    ''669'': &825\n    - 614\n    - 615\n    ''67'': &826\n    - 62\n    - 63\n    ''670'': &827\n    - 615\n    - 616\n    ''671'': &828\n    - 616\n    - 617\n    ''672'': &829\n    - 617\n    - 619\n    ''673'': &830\n    - 617\n    - 618\n    ''674'': &831\n    - 618\n    - 620\n    ''675'': &832\n    - 619\n    - 620\n    ''676'': &833\n    - 620\n    - 621\n    ''677'': &834\n    - 621\n    - 624\n    ''678'': &835\n    - 622\n    - 739\n    ''679'': &836\n    - 623\n    - 634\n    ''68'': &837\n    - 63\n    - 64\n    ''680'': &838\n    - 624\n    - 625\n    ''681'': &839\n    - 625\n    - 626\n    ''682'': &840\n    - 626\n    - 627\n    ''683'': &841\n    - 627\n    - 628\n    ''684'': &842\n    - 628\n    - 629\n    ''685'': &843\n    - 629\n    - 630\n    ''686'': &844\n    - 630\n    - 631\n    ''687'': &845\n    - 631\n    - 632\n    ''688'': &846\n    - 632\n    - 633\n    ''689'': &847\n    - 633\n    - 635\n    ''69'': &848\n    - 64\n    - 65\n    ''690'': &849\n    - 634\n    - 647\n    ''691'': &850\n    - 634\n    - 672\n    ''692'': &851\n    - 635\n    - 636\n    ''693'': &852\n    - 636\n    - 637\n    ''694'': &853\n    - 637\n    - 638\n    ''695'': &854\n    - 638\n    - 639\n    ''696'': &855\n    - 639\n    - 640\n    ''697'': &856\n    - 639\n    - 641\n    ''698'': &857\n    - 640\n    - 642\n    ''699'': &858\n    - 641\n    - 642\n    ''7'': &859\n    - 7\n    - 8\n    ''70'': &860\n    - 65\n    - 67\n    ''700'': &861\n    - 642\n    - 643\n    ''701'': &862\n    - 642\n    - 644\n    ''702'': &863\n    - 643\n    - 645\n    ''703'': &864\n    - 644\n    - 645\n    ''704'': &865\n    - 645\n    - 646\n    ''705'': &866\n    - 646\n    - 648\n    ''706'': &867\n    - 647\n    - 658\n    ''707'': &868\n    - 648\n    - 649\n    ''708'': &869\n    - 649\n    - 650\n    ''709'': &870\n    - 650\n    - 651\n    ''71'': &871\n    - 66\n    - 78\n    ''710'': &872\n    - 651\n    - 652\n    ''711'': &873\n    - 652\n    - 653\n    ''712'': &874\n    - 653\n    - 654\n    ''713'': &875\n    - 654\n    - 655\n    ''714'': &876\n    - 655\n    - 656\n    ''715'': &877\n    - 656\n    - 657\n    ''716'': &878\n    - 657\n    - 659\n    ''717'': &879\n    - 658\n    - 672\n    ''718'': &880\n    - 659\n    - 660\n    ''719'': &881\n    - 660\n    - 662\n    ''72'': &882\n    - 67\n    - 68\n    ''720'': &883\n    - 660\n    - 661\n    ''721'': &884\n    - 661\n    - 663\n    ''722'': &885\n    - 662\n    - 663\n    ''723'': &886\n    - 663\n    - 664\n    ''724'': &887\n    - 663\n    - 665\n    ''725'': &888\n    - 664\n    - 666\n    ''726'': &889\n    - 665\n    - 666\n    ''727'': &890\n    - 666\n    - 667\n    ''728'': &891\n    - 666\n    - 668\n    ''729'': &892\n    - 667\n    - 669\n    ''73'': &893\n    - 68\n    - 69\n    ''730'': &894\n    - 668\n    - 669\n    ''731'': &895\n    - 669\n    - 670\n    ''732'': &896\n    - 670\n    - 671\n    ''733'': &897\n    - 671\n    - 673\n    ''734'': &898\n    - 672\n    - 683\n    ''735'': &899\n    - 673\n    - 674\n    ''736'': &900\n    - 674\n    - 675\n    ''737'': &901\n    - 675\n    - 676\n    ''738'': &902\n    - 676\n    - 677\n    ''739'': &903\n    - 677\n    - 678\n    ''74'': &904\n    - 68\n    - 70\n    ''740'': &905\n    - 678\n    - 679\n    ''741'': &906\n    - 679\n    - 680\n    ''742'': &907\n    - 680\n    - 681\n    ''743'': &908\n    - 681\n    - 682\n    ''744'': &909\n    - 682\n    - 684\n    ''745'': &910\n    - 683\n    - 694\n    ''746'': &911\n    - 684\n    - 685\n    ''747'': &912\n    - 685\n    - 686\n    ''748'': &913\n    - 686\n    - 687\n    ''749'': &914\n    - 687\n    - 688\n    ''75'': &915\n    - 69\n    - 71\n    ''750'': &916\n    - 688\n    - 689\n    ''751'': &917\n    - 689\n    - 690\n    ''752'': &918\n    - 690\n    - 691\n    ''753'': &919\n    - 691\n    - 692\n    ''754'': &920\n    - 692\n    - 693\n    ''755'': &921\n    - 693\n    - 695\n    ''756'': &922\n    - 694\n    - 705\n    ''757'': &923\n    - 695\n    - 696\n    ''758'': &924\n    - 696\n    - 697\n    ''759'': &925\n    - 697\n    - 698\n    ''76'': &926\n    - 70\n    - 71\n    ''760'': &927\n    - 698\n    - 699\n    ''761'': &928\n    - 699\n    - 700\n    ''762'': &929\n    - 700\n    - 701\n    ''763'': &930\n    - 701\n    - 702\n    ''764'': &931\n    - 702\n    - 703\n    ''765'': &932\n    - 703\n    - 704\n    ''766'': &933\n    - 704\n    - 706\n    ''767'': &934\n    - 705\n    - 716\n    ''768'': &935\n    - 706\n    - 707\n    ''769'': &936\n    - 707\n    - 708\n    ''77'': &937\n    - 71\n    - 72\n    ''770'': &938\n    - 708\n    - 709\n    ''771'': &939\n    - 709\n    - 710\n    ''772'': &940\n    - 710\n    - 711\n    ''773'': &941\n    - 711\n    - 712\n    ''774'': &942\n    - 712\n    - 713\n    ''775'': &943\n    - 713\n    - 714\n    ''776'': &944\n    - 714\n    - 715\n    ''777'': &945\n    - 715\n    - 717\n    ''778'': &946\n    - 716\n    - 728\n    ''779'': &947\n    - 717\n    - 718\n    ''78'': &948\n    - 72\n    - 73\n    ''780'': &949\n    - 718\n    - 719\n    ''781'': &950\n    - 719\n    - 720\n    ''782'': &951\n    - 720\n    - 721\n    ''783'': &952\n    - 721\n    - 722\n    ''784'': &953\n    - 721\n    - 723\n    ''785'': &954\n    - 722\n    - 724\n    ''786'': &955\n    - 723\n    - 724\n    ''787'': &956\n    - 724\n    - 725\n    ''788'': &957\n    - 725\n    - 726\n    ''789'': &958\n    - 726\n    - 727\n    ''79'': &959\n    - 73\n    - 74\n    ''790'': &960\n    - 727\n    - 729\n    ''791'': &961\n    - 728\n    - 740\n    ''792'': &962\n    - 729\n    - 730\n    ''793'': &963\n    - 730\n    - 731\n    ''794'': &964\n    - 731\n    - 732\n    ''795'': &965\n    - 732\n    - 733\n    ''796'': &966\n    - 733\n    - 734\n    ''797'': &967\n    - 734\n    - 735\n    ''798'': &968\n    - 735\n    - 736\n    ''799'': &969\n    - 736\n    - 737\n    ''8'': &970\n    - 7\n    - 9\n    ''80'': &971\n    - 74\n    - 75\n    ''800'': &972\n    - 737\n    - 738\n    ''801'': &973\n    - 738\n    - 741\n    ''802'': &974\n    - 739\n    - 857\n    ''803'': &975\n    - 740\n    - 751\n    ''804'': &976\n    - 741\n    - 742\n    ''805'': &977\n    - 742\n    - 743\n    ''806'': &978\n    - 743\n    - 744\n    ''807'': &979\n    - 744\n    - 745\n    ''808'': &980\n    - 745\n    - 746\n    ''809'': &981\n    - 746\n    - 747\n    ''81'': &982\n    - 75\n    - 76\n    ''810'': &983\n    - 747\n    - 748\n    ''811'': &984\n    - 748\n    - 749\n    ''812'': &985\n    - 749\n    - 750\n    ''813'': &986\n    - 750\n    - 752\n    ''814'': &987\n    - 751\n    - 762\n    ''815'': &988\n    - 752\n    - 753\n    ''816'': &989\n    - 753\n    - 754\n    ''817'': &990\n    - 754\n    - 755\n    ''818'': &991\n    - 755\n    - 756\n    ''819'': &992\n    - 756\n    - 757\n    ''82'': &993\n    - 76\n    - 77\n    ''820'': &994\n    - 757\n    - 758\n    ''821'': &995\n    - 758\n    - 759\n    ''822'': &996\n    - 759\n    - 760\n    ''823'': &997\n    - 760\n    - 761\n    ''824'': &998\n    - 761\n    - 763\n    ''825'': &999\n    - 762\n    - 773\n    ''826'': &1000\n    - 762\n    - 774\n    ''827'': &1001\n    - 763\n    - 764\n    ''828'': &1002\n    - 764\n    - 765\n    ''829'': &1003\n    - 765\n    - 766\n    ''83'': &1004\n    - 77\n    - 79\n    ''830'': &1005\n    - 766\n    - 767\n    ''831'': &1006\n    - 767\n    - 768\n    ''832'': &1007\n    - 768\n    - 769\n    ''833'': &1008\n    - 769\n    - 770\n    ''834'': &1009\n    - 770\n    - 771\n    ''835'': &1010\n    - 771\n    - 772\n    ''836'': &1011\n    - 772\n    - 775\n    ''837'': &1012\n    - 773\n    - 786\n    ''838'': &1013\n    - 774\n    - 786\n    ''839'': &1014\n    - 775\n    - 776\n    ''84'': &1015\n    - 78\n    - 91\n    ''840'': &1016\n    - 776\n    - 777\n    ''841'': &1017\n    - 777\n    - 778\n    ''842'': &1018\n    - 778\n    - 779\n    ''843'': &1019\n    - 779\n    - 780\n    ''844'': &1020\n    - 780\n    - 781\n    ''845'': &1021\n    - 781\n    - 783\n    ''846'': &1022\n    - 781\n    - 782\n    ''847'': &1023\n    - 782\n    - 784\n    ''848'': &1024\n    - 783\n    - 784\n    ''849'': &1025\n    - 784\n    - 785\n    ''85'': &1026\n    - 79\n    - 80\n    ''850'': &1027\n    - 785\n    - 787\n    ''851'': &1028\n    - 786\n    - 797\n    ''852'': &1029\n    - 787\n    - 788\n    ''853'': &1030\n    - 788\n    - 795\n    ''854'': &1031\n    - 788\n    - 792\n    ''855'': &1032\n    - 788\n    - 789\n    ''856'': &1033\n    - 789\n    - 790\n    ''857'': &1034\n    - 790\n    - 791\n    ''858'': &1035\n    - 791\n    - 792\n    ''859'': &1036\n    - 792\n    - 793\n    ''86'': &1037\n    - 80\n    - 81\n    ''860'': &1038\n    - 793\n    - 794\n    ''861'': &1039\n    - 794\n    - 795\n    ''862'': &1040\n    - 795\n    - 796\n    ''863'': &1041\n    - 796\n    - 798\n    ''864'': &1042\n    - 797\n    - 808\n    ''865'': &1043\n    - 797\n    - 809\n    ''866'': &1044\n    - 798\n    - 799\n    ''867'': &1045\n    - 799\n    - 800\n    ''868'': &1046\n    - 800\n    - 801\n    ''869'': &1047\n    - 801\n    - 802\n    ''87'': &1048\n    - 81\n    - 82\n    ''870'': &1049\n    - 802\n    - 803\n    ''871'': &1050\n    - 803\n    - 804\n    ''872'': &1051\n    - 804\n    - 805\n    ''873'': &1052\n    - 804\n    - 806\n    ''874'': &1053\n    - 805\n    - 806\n    ''875'': &1054\n    - 806\n    - 807\n    ''876'': &1055\n    - 807\n    - 810\n    ''877'': &1056\n    - 808\n    - 821\n    ''878'': &1057\n    - 809\n    - 821\n    ''879'': &1058\n    - 810\n    - 811\n    ''88'': &1059\n    - 82\n    - 83\n    ''880'': &1060\n    - 811\n    - 813\n    ''881'': &1061\n    - 811\n    - 812\n    ''882'': &1062\n    - 812\n    - 814\n    ''883'': &1063\n    - 813\n    - 815\n    ''884'': &1064\n    - 814\n    - 815\n    ''885'': &1065\n    - 815\n    - 816\n    ''886'': &1066\n    - 816\n    - 817\n    ''887'': &1067\n    - 817\n    - 818\n    ''888'': &1068\n    - 818\n    - 819\n    ''889'': &1069\n    - 819\n    - 820\n    ''89'': &1070\n    - 83\n    - 85\n    ''890'': &1071\n    - 820\n    - 822\n    ''891'': &1072\n    - 821\n    - 834\n    ''892'': &1073\n    - 822\n    - 823\n    ''893'': &1074\n    - 823\n    - 824\n    ''894'': &1075\n    - 824\n    - 825\n    ''895'': &1076\n    - 825\n    - 826\n    ''896'': &1077\n    - 826\n    - 827\n    ''897'': &1078\n    - 827\n    - 828\n    ''898'': &1079\n    - 828\n    - 831\n    ''899'': &1080\n    - 828\n    - 829\n    ''9'': &1081\n    - 8\n    - 11\n    ''90'': &1082\n    - 83\n    - 86\n    ''900'': &1083\n    - 828\n    - 830\n    ''901'': &1084\n    - 829\n    - 832\n    ''902'': &1085\n    - 830\n    - 832\n    ''903'': &1086\n    - 831\n    - 832\n    ''904'': &1087\n    - 832\n    - 833\n    ''905'': &1088\n    - 833\n    - 835\n    ''906'': &1089\n    - 833\n    - 836\n    ''907'': &1090\n    - 834\n    - 846\n    ''908'': &1091\n    - 835\n    - 837\n    ''909'': &1092\n    - 836\n    - 837\n    ''91'': &1093\n    - 83\n    - 84\n    ''910'': &1094\n    - 837\n    - 838\n    ''911'': &1095\n    - 838\n    - 839\n    ''912'': &1096\n    - 839\n    - 840\n    ''913'': &1097\n    - 840\n    - 841\n    ''914'': &1098\n    - 841\n    - 842\n    ''915'': &1099\n    - 842\n    - 843\n    ''916'': &1100\n    - 843\n    - 844\n    ''917'': &1101\n    - 844\n    - 845\n    ''918'': &1102\n    - 845\n    - 847\n    ''919'': &1103\n    - 846\n    - 858\n    ''92'': &1104\n    - 84\n    - 87\n    ''920'': &1105\n    - 847\n    - 848\n    ''921'': &1106\n    - 848\n    - 849\n    ''922'': &1107\n    - 849\n    - 850\n    ''923'': &1108\n    - 850\n    - 851\n    ''924'': &1109\n    - 851\n    - 852\n    ''925'': &1110\n    - 852\n    - 853\n    ''926'': &1111\n    - 853\n    - 854\n    ''927'': &1112\n    - 854\n    - 855\n    ''928'': &1113\n    - 855\n    - 856\n    ''929'': &1114\n    - 856\n    - 859\n    ''93'': &1115\n    - 85\n    - 87\n    ''930'': &1116\n    - 857\n    - 971\n    ''931'': &1117\n    - 858\n    - 870\n    ''932'': &1118\n    - 859\n    - 860\n    ''933'': &1119\n    - 860\n    - 861\n    ''934'': &1120\n    - 860\n    - 863\n    ''935'': &1121\n    - 861\n    - 862\n    ''936'': &1122\n    - 861\n    - 863\n    ''937'': &1123\n    - 862\n    - 864\n    ''938'': &1124\n    - 863\n    - 864\n    ''939'': &1125\n    - 864\n    - 865\n    ''94'': &1126\n    - 86\n    - 87\n    ''940'': &1127\n    - 865\n    - 866\n    ''941'': &1128\n    - 866\n    - 867\n    ''942'': &1129\n    - 867\n    - 868\n    ''943'': &1130\n    - 868\n    - 869\n    ''944'': &1131\n    - 869\n    - 871\n    ''945'': &1132\n    - 870\n    - 882\n    ''946'': &1133\n    - 871\n    - 872\n    ''947'': &1134\n    - 872\n    - 873\n    ''948'': &1135\n    - 873\n    - 874\n    ''949'': &1136\n    - 874\n    - 875\n    ''95'': &1137\n    - 87\n    - 88\n    ''950'': &1138\n    - 875\n    - 877\n    ''951'': &1139\n    - 875\n    - 876\n    ''952'': &1140\n    - 876\n    - 878\n    ''953'': &1141\n    - 877\n    - 878\n    ''954'': &1142\n    - 878\n    - 879\n    ''955'': &1143\n    - 879\n    - 880\n    ''956'': &1144\n    - 880\n    - 881\n    ''957'': &1145\n    - 881\n    - 883\n    ''958'': &1146\n    - 882\n    - 893\n    ''959'': &1147\n    - 883\n    - 884\n    ''96'': &1148\n    - 88\n    - 89\n    ''960'': &1149\n    - 884\n    - 885\n    ''961'': &1150\n    - 885\n    - 886\n    ''962'': &1151\n    - 886\n    - 887\n    ''963'': &1152\n    - 887\n    - 888\n    ''964'': &1153\n    - 888\n    - 889\n    ''965'': &1154\n    - 889\n    - 890\n    ''966'': &1155\n    - 890\n    - 891\n    ''967'': &1156\n    - 891\n    - 892\n    ''968'': &1157\n    - 892\n    - 894\n    ''969'': &1158\n    - 893\n    - 905\n    ''97'': &1159\n    - 89\n    - 90\n    ''970'': &1160\n    - 894\n    - 895\n    ''971'': &1161\n    - 895\n    - 896\n    ''972'': &1162\n    - 896\n    - 897\n    ''973'': &1163\n    - 897\n    - 898\n    ''974'': &1164\n    - 898\n    - 899\n    ''975'': &1165\n    - 899\n    - 900\n    ''976'': &1166\n    - 900\n    - 902\n    ''977'': &1167\n    - 900\n    - 901\n    ''978'': &1168\n    - 901\n    - 903\n    ''979'': &1169\n    - 902\n    - 903\n    ''98'': &1170\n    - 90\n    - 92\n    ''980'': &1171\n    - 903\n    - 904\n    ''981'': &1172\n    - 904\n    - 906\n    ''982'': &1173\n    - 905\n    - 916\n    ''983'': &1174\n    - 906\n    - 907\n    ''984'': &1175\n    - 907\n    - 908\n    ''985'': &1176\n    - 908\n    - 909\n    ''986'': &1177\n    - 909\n    - 910\n    ''987'': &1178\n    - 910\n    - 911\n    ''988'': &1179\n    - 911\n    - 912\n    ''989'': &1180\n    - 912\n    - 913\n    ''99'': &1181\n    - 91\n    - 102\n    ''990'': &1182\n    - 913\n    - 914\n    ''991'': &1183\n    - 914\n    - 915\n    ''992'': &1184\n    - 915\n    - 917\n    ''993'': &1185\n    - 916\n    - 927\n    ''994'': &1186\n    - 917\n    - 918\n    ''995'': &1187\n    - 918\n    - 919\n    ''996'': &1188\n    - 919\n    - 920\n    ''997'': &1189\n    - 920\n    - 981\n    ''998'': &1190\n    - 920\n    - 921\n    ''999'': &1191\n    - 921\n    - 922\n  - ''0'':\n      ''2'':\n      - 0\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''10'':\n      ''12'':\n      - 11\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''100'':\n      ''101'':\n      - 108\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''1000'':\n      ''1001'':\n      - 1085\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1001'':\n      ''1002'':\n      - 1086\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1002'':\n      ''1003'':\n      - 1087\n      - 1\n      - B: 1\n        L: 1\n        V: 1\n      ''1004'':\n      - 1088\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''1003'':\n      ''1005'':\n      - 1089\n      - 1\n      - B: 1\n        L: 1\n        V: 1\n    ''1004'':\n      ''1005'':\n      - 1090\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''1005'':\n      ''1006'':\n      - 1092\n      - 1\n      - L: 1\n      ''1007'':\n      - 1091\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1006'':\n      ''1008'':\n      - 1093\n      - 1\n      - L: 1\n    ''1007'':\n      ''1008'':\n      - 1094\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1008'':\n      ''1009'':\n      - 1095\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1009'':\n      ''1013'':\n      - 1096\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''101'':\n      ''103'':\n      - 109\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''104'':\n      - 110\n      - 1\n      - T1: 1\n    ''1010'':\n      ''1023'':\n      - 1097\n      - 1\n      - T2: 1\n      ''1034'':\n      - 1098\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        U: 1\n        V: 1\n    ''1011'':\n      ''1034'':\n      - 1099\n      - 1\n      - J: 1\n    ''1012'':\n      ''1023'':\n      - 1100\n      - 1\n      - T1: 1\n    ''1013'':\n      ''1014'':\n      - 1101\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1014'':\n      ''1015'':\n      - 1102\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1015'':\n      ''1016'':\n      - 1103\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1016'':\n      ''1017'':\n      - 1104\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1017'':\n      ''1018'':\n      - 1105\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1018'':\n      ''1019'':\n      - 1106\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1019'':\n      ''1020'':\n      - 1107\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''102'':\n      ''114'':\n      - 111\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''1020'':\n      ''1021'':\n      - 1108\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1021'':\n      ''1022'':\n      - 1109\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1022'':\n      ''1024'':\n      - 1110\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1023'':\n      ''1034'':\n      - 1111\n      - 1\n      - T1: 1\n        T2: 1\n    ''1024'':\n      ''1025'':\n      - 1112\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1025'':\n      ''1026'':\n      - 1113\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1026'':\n      ''1027'':\n      - 1114\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1027'':\n      ''1028'':\n      - 1115\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1028'':\n      ''1029'':\n      - 1116\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1029'':\n      ''1030'':\n      - 1117\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''103'':\n      ''105'':\n      - 112\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''1030'':\n      ''1031'':\n      - 1118\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1031'':\n      ''1032'':\n      - 1119\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1032'':\n      ''1033'':\n      - 1120\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1033'':\n      ''1035'':\n      - 1121\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1034'':\n      ''1046'':\n      - 1122\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''1035'':\n      ''1036'':\n      - 1123\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1036'':\n      ''1037'':\n      - 1125\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n      ''1038'':\n      - 1124\n      - 1\n      - B: 1\n        L: 1\n        V: 1\n    ''1037'':\n      ''1038'':\n      - 1126\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''1038'':\n      ''1039'':\n      - 1127\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        V: 1\n      ''1040'':\n      - 1128\n      - 1\n      - T1: 1\n    ''1039'':\n      ''1041'':\n      - 1129\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        V: 1\n    ''104'':\n      ''105'':\n      - 113\n      - 1\n      - T1: 1\n    ''1040'':\n      ''1041'':\n      - 1130\n      - 1\n      - T1: 1\n    ''1041'':\n      ''1042'':\n      - 1131\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1042'':\n      ''1043'':\n      - 1132\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1043'':\n      ''1044'':\n      - 1133\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1044'':\n      ''1045'':\n      - 1134\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1045'':\n      ''1047'':\n      - 1135\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1046'':\n      ''1059'':\n      - 1136\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''1047'':\n      ''1048'':\n      - 1137\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1048'':\n      ''1049'':\n      - 1138\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1049'':\n      ''1050'':\n      - 1139\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''105'':\n      ''106'':\n      - 114\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''1050'':\n      ''1051'':\n      - 1140\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1051'':\n      ''1052'':\n      - 1141\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1052'':\n      ''1053'':\n      - 1142\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1053'':\n      ''1054'':\n      - 1143\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1054'':\n      ''1055'':\n      - 1144\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1055'':\n      ''1056'':\n      - 1145\n      - 1\n      - M: 1\n      ''1057'':\n      - 1147\n      - 1\n      - T1: 1\n      ''1058'':\n      - 1146\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T2: 1\n        V: 1\n    ''1056'':\n      ''1060'':\n      - 1148\n      - 1\n      - M: 1\n    ''1057'':\n      ''1060'':\n      - 1149\n      - 1\n      - T1: 1\n    ''1058'':\n      ''1060'':\n      - 1150\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T2: 1\n        V: 1\n    ''1059'':\n      ''1072'':\n      - 1151\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''106'':\n      ''107'':\n      - 115\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''1060'':\n      ''1061'':\n      - 1152\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1061'':\n      ''1062'':\n      - 1153\n      - 1\n      - C: 1\n        D: 1\n        M: 1\n        S: 1\n      ''1064'':\n      - 1154\n      - 1\n      - A: 1\n        B: 1\n        F: 1\n        J: 1\n        L: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1062'':\n      ''1063'':\n      - 1155\n      - 1\n      - C: 1\n        D: 1\n        M: 1\n        S: 1\n    ''1063'':\n      ''1066'':\n      - 1156\n      - 1\n      - C: 1\n        D: 1\n        M: 1\n        S: 1\n    ''1064'':\n      ''1065'':\n      - 1157\n      - 1\n      - V: 1\n      ''1066'':\n      - 1158\n      - 1\n      - A: 1\n        B: 1\n        F: 1\n        J: 1\n        L: 1\n        T1: 1\n        T2: 1\n    ''1065'':\n      ''1067'':\n      - 1159\n      - 1\n      - V: 1\n    ''1066'':\n      ''1067'':\n      - 1160\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''1067'':\n      ''1068'':\n      - 1161\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1068'':\n      ''1069'':\n      - 1162\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1069'':\n      ''1070'':\n      - 1163\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''107'':\n      ''108'':\n      - 116\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''1070'':\n      ''1071'':\n      - 1164\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1071'':\n      ''1073'':\n      - 1165\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1072'':\n      ''1083'':\n      - 1167\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''1084'':\n      - 1166\n      - 1\n      - L: 1\n        T1: 1\n    ''1073'':\n      ''1074'':\n      - 1168\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1074'':\n      ''1075'':\n      - 1169\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1075'':\n      ''1076'':\n      - 1170\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1076'':\n      ''1077'':\n      - 1171\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1077'':\n      ''1078'':\n      - 1172\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1078'':\n      ''1079'':\n      - 1173\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1079'':\n      ''1080'':\n      - 1174\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''108'':\n      ''109'':\n      - 117\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''1080'':\n      ''1081'':\n      - 1175\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1081'':\n      ''1082'':\n      - 1176\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1082'':\n      ''1085'':\n      - 1177\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1083'':\n      ''4'':\n      - 1178\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''1084'':\n      ''4'':\n      - 1179\n      - 1\n      - L: 1\n        T1: 1\n    ''1085'':\n      ''1086'':\n      - 1180\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1086'':\n      ''1087'':\n      - 1181\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1087'':\n      ''1088'':\n      - 1182\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1088'':\n      ''1089'':\n      - 1183\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1089'':\n      ''1090'':\n      - 1184\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''109'':\n      ''110'':\n      - 118\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''1090'':\n      ''1091'':\n      - 1185\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1091'':\n      ''1092'':\n      - 1186\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1092'':\n      ''1093'':\n      - 1187\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1093'':\n      ''1094'':\n      - 1188\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''1094'':\n      ''5'':\n      - 1189\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''11'':\n      ''12'':\n      - 12\n      - 1\n      - B: 1\n        L: 1\n    ''110'':\n      ''111'':\n      - 119\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''111'':\n      ''112'':\n      - 120\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''112'':\n      ''113'':\n      - 121\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''113'':\n      ''115'':\n      - 122\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''114'':\n      ''126'':\n      - 123\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''115'':\n      ''116'':\n      - 124\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''116'':\n      ''117'':\n      - 126\n      - 1\n      - M: 1\n      ''118'':\n      - 125\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''117'':\n      ''119'':\n      - 127\n      - 1\n      - M: 1\n    ''118'':\n      ''119'':\n      - 128\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''119'':\n      ''120'':\n      - 129\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''12'':\n      ''13'':\n      - 13\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''120'':\n      ''121'':\n      - 130\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''121'':\n      ''122'':\n      - 131\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''122'':\n      ''123'':\n      - 132\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''123'':\n      ''124'':\n      - 133\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''124'':\n      ''125'':\n      - 134\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''125'':\n      ''127'':\n      - 135\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''126'':\n      ''139'':\n      - 136\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''127'':\n      ''128'':\n      - 137\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''128'':\n      ''129'':\n      - 138\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''129'':\n      ''130'':\n      - 139\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''13'':\n      ''14'':\n      - 14\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''130'':\n      ''131'':\n      - 140\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''131'':\n      ''132'':\n      - 141\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''132'':\n      ''133'':\n      - 142\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''133'':\n      ''134'':\n      - 143\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''134'':\n      ''135'':\n      - 144\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''135'':\n      ''136'':\n      - 145\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''136'':\n      ''140'':\n      - 146\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''137'':\n      ''260'':\n      - 148\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        J: 1\n        S: 1\n        T1: 1\n        T2: 1\n      ''385'':\n      - 147\n      - 1\n      - B: 1\n        F: 1\n        L: 1\n        U: 1\n        V: 1\n    ''138'':\n      ''260'':\n      - 149\n      - 1\n      - M: 1\n    ''139'':\n      ''154'':\n      - 150\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''14'':\n      ''15'':\n      - 15\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''140'':\n      ''141'':\n      - 151\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''141'':\n      ''142'':\n      - 152\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''142'':\n      ''143'':\n      - 153\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''143'':\n      ''144'':\n      - 154\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''144'':\n      ''145'':\n      - 158\n      - 1\n      - C: 1\n      ''146'':\n      - 159\n      - 1\n      - B: 1\n        F: 1\n        L: 1\n        U: 1\n        V: 1\n      ''147'':\n      - 157\n      - 1\n      - A: 1\n        J: 1\n        T1: 1\n        T2: 1\n      ''148'':\n      - 156\n      - 1\n      - M: 1\n      ''149'':\n      - 155\n      - 1\n      - D: 1\n        S: 1\n    ''145'':\n      ''150'':\n      - 160\n      - 1\n      - C: 1\n    ''146'':\n      ''150'':\n      - 161\n      - 1\n      - B: 1\n        F: 1\n        L: 1\n        U: 1\n        V: 1\n    ''147'':\n      ''150'':\n      - 162\n      - 1\n      - A: 1\n        J: 1\n        T1: 1\n        T2: 1\n    ''148'':\n      ''150'':\n      - 163\n      - 1\n      - M: 1\n    ''149'':\n      ''150'':\n      - 164\n      - 1\n      - D: 1\n        S: 1\n    ''15'':\n      ''16'':\n      - 16\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''150'':\n      ''151'':\n      - 165\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''151'':\n      ''152'':\n      - 166\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''152'':\n      ''153'':\n      - 167\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''153'':\n      ''155'':\n      - 168\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''154'':\n      ''166'':\n      - 169\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''155'':\n      ''156'':\n      - 170\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''156'':\n      ''157'':\n      - 171\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''157'':\n      ''158'':\n      - 172\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''158'':\n      ''159'':\n      - 173\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''159'':\n      ''160'':\n      - 174\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''16'':\n      ''18'':\n      - 17\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''160'':\n      ''161'':\n      - 175\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''161'':\n      ''162'':\n      - 176\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''162'':\n      ''163'':\n      - 177\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''163'':\n      ''164'':\n      - 179\n      - 1\n      - B: 1\n        F: 1\n        L: 1\n        U: 1\n        V: 1\n      ''165'':\n      - 178\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''164'':\n      ''167'':\n      - 180\n      - 1\n      - B: 1\n        F: 1\n        L: 1\n        U: 1\n        V: 1\n    ''165'':\n      ''167'':\n      - 181\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''166'':\n      ''177'':\n      - 182\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''167'':\n      ''168'':\n      - 183\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''168'':\n      ''169'':\n      - 184\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''169'':\n      ''170'':\n      - 185\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''17'':\n      ''23'':\n      - 18\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''170'':\n      ''171'':\n      - 186\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''171'':\n      ''172'':\n      - 187\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''172'':\n      ''173'':\n      - 188\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''173'':\n      ''174'':\n      - 189\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''174'':\n      ''175'':\n      - 190\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''175'':\n      ''176'':\n      - 191\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''176'':\n      ''178'':\n      - 192\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''177'':\n      ''189'':\n      - 193\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''178'':\n      ''179'':\n      - 194\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''179'':\n      ''180'':\n      - 195\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''18'':\n      ''19'':\n      - 19\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''180'':\n      ''181'':\n      - 196\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''181'':\n      ''182'':\n      - 197\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''182'':\n      ''183'':\n      - 198\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''183'':\n      ''184'':\n      - 199\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''184'':\n      ''185'':\n      - 200\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''185'':\n      ''186'':\n      - 201\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''186'':\n      ''187'':\n      - 203\n      - 1\n      - T1: 1\n      ''188'':\n      - 202\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''187'':\n      ''190'':\n      - 204\n      - 1\n      - T1: 1\n    ''188'':\n      ''190'':\n      - 205\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''189'':\n      ''202'':\n      - 206\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''19'':\n      ''20'':\n      - 20\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''190'':\n      ''191'':\n      - 207\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''191'':\n      ''192'':\n      - 208\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''192'':\n      ''193'':\n      - 209\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''193'':\n      ''194'':\n      - 211\n      - 1\n      - T1: 1\n      ''195'':\n      - 210\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''194'':\n      ''197'':\n      - 212\n      - 1\n      - T1: 1\n    ''195'':\n      ''196'':\n      - 214\n      - 1\n      - L: 1\n      ''197'':\n      - 213\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''196'':\n      ''198'':\n      - 215\n      - 1\n      - L: 1\n    ''197'':\n      ''198'':\n      - 216\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''198'':\n      ''199'':\n      - 217\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''199'':\n      ''200'':\n      - 218\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''2'':\n      ''137'':\n      - 1\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''138'':\n      - 2\n      - 1\n      - M: 1\n    ''20'':\n      ''21'':\n      - 22\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n      ''22'':\n      - 21\n      - 1\n      - B: 1\n        L: 1\n    ''200'':\n      ''201'':\n      - 219\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''201'':\n      ''203'':\n      - 220\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''202'':\n      ''214'':\n      - 221\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''203'':\n      ''204'':\n      - 222\n      - 1\n      - T1: 1\n      ''205'':\n      - 223\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''204'':\n      ''207'':\n      - 224\n      - 1\n      - T1: 1\n    ''205'':\n      ''206'':\n      - 225\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''206'':\n      ''207'':\n      - 226\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''207'':\n      ''208'':\n      - 227\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''208'':\n      ''209'':\n      - 228\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''209'':\n      ''210'':\n      - 229\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''21'':\n      ''1'':\n      - 23\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''210'':\n      ''211'':\n      - 230\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''211'':\n      ''212'':\n      - 231\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''212'':\n      ''213'':\n      - 232\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''213'':\n      ''215'':\n      - 233\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''214'':\n      ''225'':\n      - 234\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''215'':\n      ''216'':\n      - 235\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''216'':\n      ''217'':\n      - 236\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''217'':\n      ''218'':\n      - 237\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''218'':\n      ''219'':\n      - 238\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''219'':\n      ''220'':\n      - 239\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''22'':\n      ''1'':\n      - 24\n      - 1\n      - B: 1\n        L: 1\n    ''220'':\n      ''221'':\n      - 240\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''221'':\n      ''222'':\n      - 241\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''222'':\n      ''223'':\n      - 242\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''223'':\n      ''224'':\n      - 243\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''224'':\n      ''226'':\n      - 244\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''225'':\n      ''236'':\n      - 245\n      - 1\n      - T1: 1\n        T2: 1\n      ''247'':\n      - 246\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        U: 1\n        V: 1\n    ''226'':\n      ''227'':\n      - 247\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''227'':\n      ''228'':\n      - 248\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''228'':\n      ''229'':\n      - 249\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''229'':\n      ''230'':\n      - 250\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''23'':\n      ''24'':\n      - 25\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''230'':\n      ''231'':\n      - 251\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''231'':\n      ''232'':\n      - 252\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''232'':\n      ''233'':\n      - 253\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''233'':\n      ''234'':\n      - 254\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''234'':\n      ''235'':\n      - 255\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''235'':\n      ''237'':\n      - 256\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''236'':\n      ''247'':\n      - 257\n      - 1\n      - T1: 1\n        T2: 1\n    ''237'':\n      ''238'':\n      - 258\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''238'':\n      ''239'':\n      - 259\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''239'':\n      ''240'':\n      - 260\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''24'':\n      ''25'':\n      - 26\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''240'':\n      ''241'':\n      - 261\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''241'':\n      ''242'':\n      - 262\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''242'':\n      ''243'':\n      - 263\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''243'':\n      ''244'':\n      - 264\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''244'':\n      ''245'':\n      - 265\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''245'':\n      ''246'':\n      - 266\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''246'':\n      ''248'':\n      - 267\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''247'':\n      ''261'':\n      - 268\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''248'':\n      ''249'':\n      - 269\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''249'':\n      ''250'':\n      - 270\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''25'':\n      ''26'':\n      - 27\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''250'':\n      ''251'':\n      - 272\n      - 1\n      - T1: 1\n      ''252'':\n      - 271\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''251'':\n      ''253'':\n      - 273\n      - 1\n      - T1: 1\n    ''252'':\n      ''253'':\n      - 274\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''253'':\n      ''254'':\n      - 275\n      - 1\n      - T1: 1\n      ''255'':\n      - 276\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''254'':\n      ''256'':\n      - 277\n      - 1\n      - T1: 1\n    ''255'':\n      ''256'':\n      - 278\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''256'':\n      ''257'':\n      - 279\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''257'':\n      ''258'':\n      - 280\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''258'':\n      ''259'':\n      - 281\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''259'':\n      ''262'':\n      - 282\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''26'':\n      ''27'':\n      - 28\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''260'':\n      ''385'':\n      - 283\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''261'':\n      ''273'':\n      - 284\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''262'':\n      ''263'':\n      - 285\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''263'':\n      ''264'':\n      - 286\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''264'':\n      ''265'':\n      - 287\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''265'':\n      ''266'':\n      - 288\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''266'':\n      ''267'':\n      - 289\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''267'':\n      ''268'':\n      - 290\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''268'':\n      ''269'':\n      - 291\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''269'':\n      ''270'':\n      - 292\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''27'':\n      ''28'':\n      - 29\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''270'':\n      ''271'':\n      - 293\n      - 1\n      - T1: 1\n      ''272'':\n      - 294\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''271'':\n      ''275'':\n      - 295\n      - 1\n      - T1: 1\n    ''272'':\n      ''274'':\n      - 297\n      - 1\n      - J: 1\n      ''275'':\n      - 296\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''273'':\n      ''288'':\n      - 298\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''274'':\n      ''276'':\n      - 299\n      - 1\n      - J: 1\n    ''275'':\n      ''276'':\n      - 300\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''276'':\n      ''277'':\n      - 301\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''277'':\n      ''278'':\n      - 302\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''278'':\n      ''279'':\n      - 304\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''281'':\n      - 303\n      - 1\n      - M: 1\n    ''279'':\n      ''280'':\n      - 305\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''28'':\n      ''29'':\n      - 30\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''280'':\n      ''281'':\n      - 306\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''281'':\n      ''282'':\n      - 307\n      - 1\n      - A: 1\n        C: 1\n        J: 1\n        M: 1\n      ''283'':\n      - 308\n      - 1\n      - B: 1\n        D: 1\n        F: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''282'':\n      ''285'':\n      - 309\n      - 1\n      - A: 1\n        C: 1\n        J: 1\n        M: 1\n    ''283'':\n      ''284'':\n      - 310\n      - 1\n      - T1: 1\n      ''285'':\n      - 311\n      - 1\n      - B: 1\n        D: 1\n        F: 1\n        L: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''284'':\n      ''287'':\n      - 312\n      - 1\n      - T1: 1\n    ''285'':\n      ''286'':\n      - 314\n      - 1\n      - C: 1\n        D: 1\n        M: 1\n        S: 1\n      ''287'':\n      - 313\n      - 1\n      - A: 1\n        B: 1\n        F: 1\n        J: 1\n        L: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''286'':\n      ''289'':\n      - 315\n      - 1\n      - C: 1\n        D: 1\n        M: 1\n        S: 1\n    ''287'':\n      ''289'':\n      - 316\n      - 1\n      - A: 1\n        B: 1\n        F: 1\n        J: 1\n        L: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''288'':\n      ''301'':\n      - 317\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''289'':\n      ''290'':\n      - 318\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''29'':\n      ''30'':\n      - 31\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''290'':\n      ''291'':\n      - 319\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''291'':\n      ''292'':\n      - 320\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''292'':\n      ''293'':\n      - 322\n      - 1\n      - L: 1\n      ''294'':\n      - 321\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''293'':\n      ''295'':\n      - 323\n      - 1\n      - L: 1\n    ''294'':\n      ''295'':\n      - 324\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''295'':\n      ''296'':\n      - 325\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''296'':\n      ''297'':\n      - 326\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''297'':\n      ''298'':\n      - 328\n      - 1\n      - A: 1\n        J: 1\n      ''299'':\n      - 327\n      - 1\n      - B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''298'':\n      ''300'':\n      - 329\n      - 1\n      - A: 1\n        J: 1\n    ''299'':\n      ''300'':\n      - 330\n      - 1\n      - B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''3'':\n      ''31'':\n      - 3\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''30'':\n      ''32'':\n      - 32\n      - 1\n      - V: 1\n      ''33'':\n      - 33\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n    ''300'':\n      ''302'':\n      - 331\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''301'':\n      ''313'':\n      - 332\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''302'':\n      ''303'':\n      - 333\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''303'':\n      ''304'':\n      - 334\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''304'':\n      ''305'':\n      - 335\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''305'':\n      ''306'':\n      - 337\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n      ''307'':\n      - 336\n      - 1\n      - V: 1\n    ''306'':\n      ''307'':\n      - 339\n      - 1\n      - B: 1\n        F: 1\n        L: 1\n        U: 1\n      ''308'':\n      - 338\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''307'':\n      ''309'':\n      - 340\n      - 1\n      - B: 1\n        F: 1\n        L: 1\n        U: 1\n        V: 1\n    ''308'':\n      ''309'':\n      - 341\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''309'':\n      ''310'':\n      - 342\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''31'':\n      ''43'':\n      - 34\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''310'':\n      ''311'':\n      - 343\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''311'':\n      ''312'':\n      - 344\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''312'':\n      ''314'':\n      - 345\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''313'':\n      ''324'':\n      - 346\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''314'':\n      ''315'':\n      - 347\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''315'':\n      ''316'':\n      - 348\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''316'':\n      ''317'':\n      - 349\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''317'':\n      ''318'':\n      - 350\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''318'':\n      ''319'':\n      - 351\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''319'':\n      ''320'':\n      - 352\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''32'':\n      ''34'':\n      - 35\n      - 1\n      - V: 1\n    ''320'':\n      ''321'':\n      - 353\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''321'':\n      ''322'':\n      - 354\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''322'':\n      ''323'':\n      - 355\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''323'':\n      ''325'':\n      - 356\n      - 1\n      - F: 1\n        U: 1\n      ''326'':\n      - 357\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''324'':\n      ''336'':\n      - 358\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''325'':\n      ''327'':\n      - 359\n      - 1\n      - F: 1\n        U: 1\n    ''326'':\n      ''327'':\n      - 360\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''327'':\n      ''328'':\n      - 361\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''328'':\n      ''329'':\n      - 362\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''329'':\n      ''330'':\n      - 363\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''33'':\n      ''34'':\n      - 36\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n    ''330'':\n      ''331'':\n      - 364\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''331'':\n      ''332'':\n      - 365\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''332'':\n      ''333'':\n      - 366\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''333'':\n      ''334'':\n      - 367\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''334'':\n      ''335'':\n      - 368\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''335'':\n      ''337'':\n      - 369\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''336'':\n      ''348'':\n      - 370\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''337'':\n      ''338'':\n      - 371\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n      ''339'':\n      - 372\n      - 1\n      - F: 1\n        U: 1\n        V: 1\n    ''338'':\n      ''340'':\n      - 373\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''339'':\n      ''340'':\n      - 374\n      - 1\n      - F: 1\n        U: 1\n        V: 1\n    ''34'':\n      ''35'':\n      - 37\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''340'':\n      ''341'':\n      - 375\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''341'':\n      ''342'':\n      - 376\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''342'':\n      ''343'':\n      - 377\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''343'':\n      ''344'':\n      - 378\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''344'':\n      ''345'':\n      - 379\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''346'':\n      - 380\n      - 1\n      - F: 1\n    ''345'':\n      ''346'':\n      - 381\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''346'':\n      ''347'':\n      - 382\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''347'':\n      ''349'':\n      - 383\n      - 1\n      - J: 1\n      ''350'':\n      - 384\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''348'':\n      ''360'':\n      - 385\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''349'':\n      ''351'':\n      - 386\n      - 1\n      - J: 1\n    ''35'':\n      ''36'':\n      - 38\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''350'':\n      ''351'':\n      - 387\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''351'':\n      ''352'':\n      - 388\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''352'':\n      ''353'':\n      - 389\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''353'':\n      ''354'':\n      - 390\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''354'':\n      ''355'':\n      - 391\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''355'':\n      ''356'':\n      - 392\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''356'':\n      ''357'':\n      - 393\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''357'':\n      ''358'':\n      - 394\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''358'':\n      ''359'':\n      - 395\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''359'':\n      ''361'':\n      - 396\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''36'':\n      ''37'':\n      - 39\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''360'':\n      ''373'':\n      - 398\n      - 1\n      - C: 1\n        D: 1\n        M: 1\n        S: 1\n      ''374'':\n      - 397\n      - 1\n      - A: 1\n        B: 1\n        F: 1\n        J: 1\n        L: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''361'':\n      ''362'':\n      - 399\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''362'':\n      ''363'':\n      - 400\n      - 1\n      - B: 1\n      ''364'':\n      - 401\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''363'':\n      ''365'':\n      - 402\n      - 1\n      - B: 1\n    ''364'':\n      ''365'':\n      - 403\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''365'':\n      ''366'':\n      - 404\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''366'':\n      ''367'':\n      - 405\n      - 1\n      - B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''368'':\n      - 406\n      - 1\n      - A: 1\n    ''367'':\n      ''369'':\n      - 407\n      - 1\n      - B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''368'':\n      ''369'':\n      - 408\n      - 1\n      - A: 1\n    ''369'':\n      ''370'':\n      - 409\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''37'':\n      ''38'':\n      - 40\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''370'':\n      ''371'':\n      - 410\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''371'':\n      ''372'':\n      - 411\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''372'':\n      ''375'':\n      - 412\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''373'':\n      ''386'':\n      - 413\n      - 1\n      - C: 1\n        D: 1\n        M: 1\n        S: 1\n    ''374'':\n      ''386'':\n      - 414\n      - 1\n      - A: 1\n        B: 1\n        F: 1\n        J: 1\n        L: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''375'':\n      ''376'':\n      - 415\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''376'':\n      ''377'':\n      - 416\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''377'':\n      ''378'':\n      - 417\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''378'':\n      ''379'':\n      - 418\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''379'':\n      ''380'':\n      - 419\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''38'':\n      ''39'':\n      - 41\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''380'':\n      ''381'':\n      - 420\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''381'':\n      ''382'':\n      - 421\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''382'':\n      ''383'':\n      - 422\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''383'':\n      ''384'':\n      - 423\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''384'':\n      ''387'':\n      - 424\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''385'':\n      ''505'':\n      - 425\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''386'':\n      ''398'':\n      - 426\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''387'':\n      ''388'':\n      - 427\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''388'':\n      ''389'':\n      - 428\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''389'':\n      ''390'':\n      - 429\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''39'':\n      ''40'':\n      - 42\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''41'':\n      - 43\n      - 1\n      - M: 1\n    ''390'':\n      ''391'':\n      - 430\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''391'':\n      ''392'':\n      - 431\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''392'':\n      ''393'':\n      - 432\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''394'':\n      - 433\n      - 1\n      - T1: 1\n    ''393'':\n      ''395'':\n      - 434\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''394'':\n      ''395'':\n      - 435\n      - 1\n      - T1: 1\n    ''395'':\n      ''396'':\n      - 436\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''396'':\n      ''397'':\n      - 437\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''397'':\n      ''399'':\n      - 438\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''398'':\n      ''412'':\n      - 439\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''399'':\n      ''400'':\n      - 440\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''4'':\n      ''17'':\n      - 4\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''40'':\n      ''41'':\n      - 44\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''400'':\n      ''401'':\n      - 441\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''401'':\n      ''402'':\n      - 443\n      - 1\n      - T1: 1\n      ''403'':\n      - 442\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''402'':\n      ''404'':\n      - 444\n      - 1\n      - T1: 1\n    ''403'':\n      ''404'':\n      - 445\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''404'':\n      ''405'':\n      - 446\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''405'':\n      ''406'':\n      - 447\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''406'':\n      ''407'':\n      - 448\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''408'':\n      - 449\n      - 1\n      - D: 1\n    ''407'':\n      ''409'':\n      - 450\n      - 1\n      - B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''410'':\n      - 451\n      - 1\n      - A: 1\n    ''408'':\n      ''409'':\n      - 452\n      - 1\n      - D: 1\n    ''409'':\n      ''411'':\n      - 453\n      - 1\n      - B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''41'':\n      ''42'':\n      - 45\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''410'':\n      ''411'':\n      - 454\n      - 1\n      - A: 1\n    ''411'':\n      ''413'':\n      - 455\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''412'':\n      ''423'':\n      - 456\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''413'':\n      ''414'':\n      - 457\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''414'':\n      ''415'':\n      - 458\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''415'':\n      ''416'':\n      - 459\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''416'':\n      ''417'':\n      - 460\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''417'':\n      ''418'':\n      - 461\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''418'':\n      ''419'':\n      - 462\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''419'':\n      ''420'':\n      - 463\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''42'':\n      ''44'':\n      - 46\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''420'':\n      ''421'':\n      - 464\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''421'':\n      ''422'':\n      - 465\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''422'':\n      ''424'':\n      - 466\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''423'':\n      ''434'':\n      - 467\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''424'':\n      ''425'':\n      - 468\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''425'':\n      ''426'':\n      - 469\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''426'':\n      ''427'':\n      - 470\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''427'':\n      ''428'':\n      - 471\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''428'':\n      ''429'':\n      - 472\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''429'':\n      ''430'':\n      - 473\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''43'':\n      ''54'':\n      - 47\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''430'':\n      ''431'':\n      - 474\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''431'':\n      ''432'':\n      - 475\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''432'':\n      ''433'':\n      - 476\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''433'':\n      ''435'':\n      - 477\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''434'':\n      ''445'':\n      - 478\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''435'':\n      ''436'':\n      - 479\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''436'':\n      ''437'':\n      - 480\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''437'':\n      ''438'':\n      - 481\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''438'':\n      ''439'':\n      - 482\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''439'':\n      ''440'':\n      - 483\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''44'':\n      ''45'':\n      - 48\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''440'':\n      ''441'':\n      - 484\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''441'':\n      ''442'':\n      - 485\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''442'':\n      ''443'':\n      - 486\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''443'':\n      ''444'':\n      - 487\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''444'':\n      ''446'':\n      - 488\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''445'':\n      ''457'':\n      - 489\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''446'':\n      ''447'':\n      - 490\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''447'':\n      ''448'':\n      - 491\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''448'':\n      ''449'':\n      - 492\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''449'':\n      ''450'':\n      - 493\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''45'':\n      ''46'':\n      - 49\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''450'':\n      ''451'':\n      - 494\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''451'':\n      ''452'':\n      - 495\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''452'':\n      ''453'':\n      - 496\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''453'':\n      ''454'':\n      - 497\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''454'':\n      ''455'':\n      - 498\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''456'':\n      - 499\n      - 1\n      - F: 1\n    ''455'':\n      ''458'':\n      - 500\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''456'':\n      ''458'':\n      - 501\n      - 1\n      - F: 1\n    ''457'':\n      ''468'':\n      - 502\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''458'':\n      ''459'':\n      - 503\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''459'':\n      ''460'':\n      - 504\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''46'':\n      ''47'':\n      - 50\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''460'':\n      ''461'':\n      - 505\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''461'':\n      ''462'':\n      - 506\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''462'':\n      ''463'':\n      - 507\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''463'':\n      ''464'':\n      - 508\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''464'':\n      ''465'':\n      - 509\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''465'':\n      ''466'':\n      - 510\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''466'':\n      ''467'':\n      - 511\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''467'':\n      ''469'':\n      - 512\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''468'':\n      ''479'':\n      - 513\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''469'':\n      ''470'':\n      - 514\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''47'':\n      ''48'':\n      - 51\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''470'':\n      ''471'':\n      - 515\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''471'':\n      ''472'':\n      - 516\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''472'':\n      ''473'':\n      - 517\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''473'':\n      ''474'':\n      - 518\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''474'':\n      ''475'':\n      - 519\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''475'':\n      ''476'':\n      - 520\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''476'':\n      ''477'':\n      - 521\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''477'':\n      ''478'':\n      - 522\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''478'':\n      ''480'':\n      - 523\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''479'':\n      ''490'':\n      - 524\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''48'':\n      ''49'':\n      - 52\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''480'':\n      ''481'':\n      - 525\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''481'':\n      ''482'':\n      - 526\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''482'':\n      ''483'':\n      - 527\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''483'':\n      ''484'':\n      - 528\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''484'':\n      ''485'':\n      - 529\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''485'':\n      ''486'':\n      - 530\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''486'':\n      ''487'':\n      - 531\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''487'':\n      ''488'':\n      - 532\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''488'':\n      ''489'':\n      - 533\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''489'':\n      ''491'':\n      - 534\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''49'':\n      ''50'':\n      - 53\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''490'':\n      ''506'':\n      - 535\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''491'':\n      ''492'':\n      - 536\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''492'':\n      ''493'':\n      - 537\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''493'':\n      ''494'':\n      - 540\n      - 1\n      - T1: 1\n      ''495'':\n      - 541\n      - 1\n      - M: 1\n      ''496'':\n      - 539\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T2: 1\n        U: 1\n      ''497'':\n      - 538\n      - 1\n      - V: 1\n    ''494'':\n      ''498'':\n      - 542\n      - 1\n      - T1: 1\n    ''495'':\n      ''498'':\n      - 543\n      - 1\n      - M: 1\n    ''496'':\n      ''498'':\n      - 544\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T2: 1\n        U: 1\n    ''497'':\n      ''498'':\n      - 545\n      - 1\n      - V: 1\n    ''498'':\n      ''499'':\n      - 546\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''499'':\n      ''500'':\n      - 547\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''5'':\n      ''6'':\n      - 5\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''50'':\n      ''51'':\n      - 54\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''500'':\n      ''501'':\n      - 548\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n      ''502'':\n      - 549\n      - 1\n      - F: 1\n        U: 1\n        V: 1\n    ''501'':\n      ''503'':\n      - 550\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''502'':\n      ''503'':\n      - 551\n      - 1\n      - F: 1\n        U: 1\n        V: 1\n    ''503'':\n      ''504'':\n      - 552\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''508'':\n      - 553\n      - 1\n      - J: 1\n    ''504'':\n      ''507'':\n      - 554\n      - 1\n      - L: 1\n        T1: 1\n        T2: 1\n      ''508'':\n      - 555\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        M: 1\n        S: 1\n        U: 1\n        V: 1\n    ''505'':\n      ''622'':\n      - 556\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''506'':\n      ''518'':\n      - 557\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''507'':\n      ''509'':\n      - 558\n      - 1\n      - L: 1\n        T1: 1\n        T2: 1\n    ''508'':\n      ''509'':\n      - 559\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        U: 1\n        V: 1\n    ''509'':\n      ''510'':\n      - 560\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''51'':\n      ''52'':\n      - 55\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''510'':\n      ''511'':\n      - 561\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''511'':\n      ''512'':\n      - 562\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''512'':\n      ''513'':\n      - 563\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''513'':\n      ''514'':\n      - 564\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''514'':\n      ''515'':\n      - 565\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''515'':\n      ''516'':\n      - 566\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''516'':\n      ''517'':\n      - 567\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''517'':\n      ''519'':\n      - 568\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''518'':\n      ''530'':\n      - 569\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''519'':\n      ''520'':\n      - 570\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''52'':\n      ''53'':\n      - 56\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''520'':\n      ''521'':\n      - 571\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''521'':\n      ''522'':\n      - 572\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''522'':\n      ''523'':\n      - 573\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''523'':\n      ''524'':\n      - 575\n      - 1\n      - L: 1\n        T1: 1\n        T2: 1\n      ''525'':\n      - 574\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        U: 1\n        V: 1\n    ''524'':\n      ''526'':\n      - 576\n      - 1\n      - L: 1\n        T1: 1\n        T2: 1\n    ''525'':\n      ''526'':\n      - 577\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        U: 1\n        V: 1\n    ''526'':\n      ''527'':\n      - 578\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''527'':\n      ''528'':\n      - 579\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''528'':\n      ''529'':\n      - 580\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''529'':\n      ''531'':\n      - 581\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''53'':\n      ''55'':\n      - 57\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''530'':\n      ''541'':\n      - 582\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''531'':\n      ''532'':\n      - 583\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''532'':\n      ''533'':\n      - 584\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''533'':\n      ''534'':\n      - 585\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''534'':\n      ''535'':\n      - 586\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''535'':\n      ''536'':\n      - 587\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''536'':\n      ''537'':\n      - 588\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''537'':\n      ''538'':\n      - 589\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''538'':\n      ''539'':\n      - 590\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''539'':\n      ''540'':\n      - 591\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''54'':\n      ''66'':\n      - 58\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''540'':\n      ''542'':\n      - 592\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''541'':\n      ''552'':\n      - 593\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''542'':\n      ''543'':\n      - 594\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''543'':\n      ''544'':\n      - 595\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''544'':\n      ''545'':\n      - 596\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''545'':\n      ''546'':\n      - 597\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''546'':\n      ''547'':\n      - 598\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''547'':\n      ''548'':\n      - 599\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''548'':\n      ''549'':\n      - 600\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''549'':\n      ''550'':\n      - 601\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''55'':\n      ''56'':\n      - 59\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''550'':\n      ''551'':\n      - 602\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''551'':\n      ''553'':\n      - 603\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''552'':\n      ''563'':\n      - 604\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''553'':\n      ''554'':\n      - 605\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''554'':\n      ''555'':\n      - 606\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''555'':\n      ''556'':\n      - 607\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''556'':\n      ''557'':\n      - 608\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''557'':\n      ''558'':\n      - 609\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''558'':\n      ''559'':\n      - 610\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''559'':\n      ''560'':\n      - 611\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''56'':\n      ''57'':\n      - 60\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''560'':\n      ''561'':\n      - 612\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''561'':\n      ''562'':\n      - 613\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''562'':\n      ''564'':\n      - 614\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''563'':\n      ''576'':\n      - 615\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''564'':\n      ''565'':\n      - 616\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''565'':\n      ''566'':\n      - 617\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''566'':\n      ''567'':\n      - 618\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''567'':\n      ''568'':\n      - 619\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''568'':\n      ''569'':\n      - 620\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''569'':\n      ''570'':\n      - 621\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''571'':\n      - 622\n      - 1\n      - M: 1\n    ''57'':\n      ''58'':\n      - 61\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''570'':\n      ''572'':\n      - 623\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''571'':\n      ''572'':\n      - 624\n      - 1\n      - M: 1\n    ''572'':\n      ''573'':\n      - 625\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n      ''574'':\n      - 626\n      - 1\n      - B: 1\n        F: 1\n        J: 1\n        L: 1\n        U: 1\n    ''573'':\n      ''575'':\n      - 627\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''574'':\n      ''575'':\n      - 628\n      - 1\n      - B: 1\n        F: 1\n        J: 1\n        L: 1\n        U: 1\n    ''575'':\n      ''577'':\n      - 629\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''576'':\n      ''587'':\n      - 630\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''577'':\n      ''578'':\n      - 631\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''578'':\n      ''579'':\n      - 632\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''579'':\n      ''580'':\n      - 633\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''58'':\n      ''59'':\n      - 62\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''580'':\n      ''581'':\n      - 634\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''581'':\n      ''582'':\n      - 635\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''582'':\n      ''583'':\n      - 636\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''583'':\n      ''584'':\n      - 637\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''584'':\n      ''585'':\n      - 638\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''585'':\n      ''586'':\n      - 639\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''586'':\n      ''588'':\n      - 640\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''587'':\n      ''598'':\n      - 641\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''588'':\n      ''589'':\n      - 642\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''589'':\n      ''590'':\n      - 643\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''59'':\n      ''60'':\n      - 63\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''590'':\n      ''591'':\n      - 644\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''591'':\n      ''592'':\n      - 645\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''592'':\n      ''593'':\n      - 646\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''593'':\n      ''594'':\n      - 647\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''594'':\n      ''595'':\n      - 648\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''595'':\n      ''596'':\n      - 649\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''596'':\n      ''597'':\n      - 650\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''597'':\n      ''599'':\n      - 651\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''598'':\n      ''610'':\n      - 652\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''599'':\n      ''600'':\n      - 653\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''6'':\n      ''7'':\n      - 6\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''60'':\n      ''61'':\n      - 64\n      - 1\n      - B: 1\n        D: 1\n        F: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n      ''62'':\n      - 65\n      - 1\n      - A: 1\n        C: 1\n        J: 1\n        M: 1\n        U: 1\n    ''600'':\n      ''601'':\n      - 654\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''601'':\n      ''602'':\n      - 655\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''602'':\n      ''603'':\n      - 656\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''603'':\n      ''604'':\n      - 657\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''604'':\n      ''605'':\n      - 659\n      - 1\n      - U: 1\n      ''606'':\n      - 658\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''605'':\n      ''1'':\n      - 660\n      - 1\n      - U: 1\n    ''606'':\n      ''607'':\n      - 661\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''607'':\n      ''608'':\n      - 662\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''608'':\n      ''609'':\n      - 663\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''609'':\n      ''611'':\n      - 664\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''61'':\n      ''63'':\n      - 66\n      - 1\n      - B: 1\n        D: 1\n        F: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''610'':\n      ''623'':\n      - 665\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''611'':\n      ''612'':\n      - 666\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''612'':\n      ''613'':\n      - 667\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''613'':\n      ''614'':\n      - 668\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''614'':\n      ''615'':\n      - 669\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''615'':\n      ''616'':\n      - 670\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''616'':\n      ''617'':\n      - 671\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''617'':\n      ''618'':\n      - 673\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n      ''619'':\n      - 672\n      - 1\n      - L: 1\n    ''618'':\n      ''620'':\n      - 674\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''619'':\n      ''620'':\n      - 675\n      - 1\n      - L: 1\n    ''62'':\n      ''63'':\n      - 67\n      - 1\n      - A: 1\n        C: 1\n        J: 1\n        M: 1\n        U: 1\n    ''620'':\n      ''621'':\n      - 676\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''621'':\n      ''624'':\n      - 677\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''622'':\n      ''739'':\n      - 678\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''623'':\n      ''634'':\n      - 679\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''624'':\n      ''625'':\n      - 680\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''625'':\n      ''626'':\n      - 681\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''626'':\n      ''627'':\n      - 682\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''627'':\n      ''628'':\n      - 683\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''628'':\n      ''629'':\n      - 684\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''629'':\n      ''630'':\n      - 685\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''63'':\n      ''64'':\n      - 68\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''630'':\n      ''631'':\n      - 686\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''631'':\n      ''632'':\n      - 687\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''632'':\n      ''633'':\n      - 688\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''633'':\n      ''635'':\n      - 689\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''634'':\n      ''647'':\n      - 690\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''672'':\n      - 691\n      - 1\n      - J: 1\n    ''635'':\n      ''636'':\n      - 692\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''636'':\n      ''637'':\n      - 693\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''637'':\n      ''638'':\n      - 694\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''638'':\n      ''639'':\n      - 695\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''639'':\n      ''640'':\n      - 696\n      - 1\n      - J: 1\n      ''641'':\n      - 697\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''64'':\n      ''65'':\n      - 69\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''640'':\n      ''642'':\n      - 698\n      - 1\n      - J: 1\n    ''641'':\n      ''642'':\n      - 699\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''642'':\n      ''643'':\n      - 700\n      - 1\n      - J: 1\n      ''644'':\n      - 701\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''643'':\n      ''645'':\n      - 702\n      - 1\n      - J: 1\n    ''644'':\n      ''645'':\n      - 703\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''645'':\n      ''646'':\n      - 704\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''646'':\n      ''648'':\n      - 705\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''647'':\n      ''658'':\n      - 706\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''648'':\n      ''649'':\n      - 707\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''649'':\n      ''650'':\n      - 708\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''65'':\n      ''67'':\n      - 70\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''650'':\n      ''651'':\n      - 709\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''651'':\n      ''652'':\n      - 710\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''652'':\n      ''653'':\n      - 711\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''653'':\n      ''654'':\n      - 712\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''654'':\n      ''655'':\n      - 713\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''655'':\n      ''656'':\n      - 714\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''656'':\n      ''657'':\n      - 715\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''657'':\n      ''659'':\n      - 716\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''658'':\n      ''672'':\n      - 717\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''659'':\n      ''660'':\n      - 718\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''66'':\n      ''78'':\n      - 71\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''660'':\n      ''661'':\n      - 720\n      - 1\n      - B: 1\n        L: 1\n      ''662'':\n      - 719\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''661'':\n      ''663'':\n      - 721\n      - 1\n      - B: 1\n        L: 1\n    ''662'':\n      ''663'':\n      - 722\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''663'':\n      ''664'':\n      - 723\n      - 1\n      - B: 1\n        L: 1\n      ''665'':\n      - 724\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''664'':\n      ''666'':\n      - 725\n      - 1\n      - B: 1\n        L: 1\n    ''665'':\n      ''666'':\n      - 726\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''666'':\n      ''667'':\n      - 727\n      - 1\n      - T1: 1\n      ''668'':\n      - 728\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        V: 1\n    ''667'':\n      ''669'':\n      - 729\n      - 1\n      - T1: 1\n    ''668'':\n      ''669'':\n      - 730\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        V: 1\n    ''669'':\n      ''670'':\n      - 731\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''67'':\n      ''68'':\n      - 72\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''670'':\n      ''671'':\n      - 732\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''671'':\n      ''673'':\n      - 733\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''672'':\n      ''683'':\n      - 734\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''673'':\n      ''674'':\n      - 735\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''674'':\n      ''675'':\n      - 736\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''675'':\n      ''676'':\n      - 737\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''676'':\n      ''677'':\n      - 738\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''677'':\n      ''678'':\n      - 739\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''678'':\n      ''679'':\n      - 740\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''679'':\n      ''680'':\n      - 741\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''68'':\n      ''69'':\n      - 73\n      - 1\n      - F: 1\n        M: 1\n      ''70'':\n      - 74\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''680'':\n      ''681'':\n      - 742\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''681'':\n      ''682'':\n      - 743\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''682'':\n      ''684'':\n      - 744\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''683'':\n      ''694'':\n      - 745\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''684'':\n      ''685'':\n      - 746\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''685'':\n      ''686'':\n      - 747\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''686'':\n      ''687'':\n      - 748\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''687'':\n      ''688'':\n      - 749\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''688'':\n      ''689'':\n      - 750\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''689'':\n      ''690'':\n      - 751\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''69'':\n      ''71'':\n      - 75\n      - 1\n      - F: 1\n        M: 1\n    ''690'':\n      ''691'':\n      - 752\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''691'':\n      ''692'':\n      - 753\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''692'':\n      ''693'':\n      - 754\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''693'':\n      ''695'':\n      - 755\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''694'':\n      ''705'':\n      - 756\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''695'':\n      ''696'':\n      - 757\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''696'':\n      ''697'':\n      - 758\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''697'':\n      ''698'':\n      - 759\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''698'':\n      ''699'':\n      - 760\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''699'':\n      ''700'':\n      - 761\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''7'':\n      ''8'':\n      - 7\n      - 1\n      - B: 1\n        L: 1\n      ''9'':\n      - 8\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''70'':\n      ''71'':\n      - 76\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''700'':\n      ''701'':\n      - 762\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''701'':\n      ''702'':\n      - 763\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''702'':\n      ''703'':\n      - 764\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''703'':\n      ''704'':\n      - 765\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''704'':\n      ''706'':\n      - 766\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''705'':\n      ''716'':\n      - 767\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''706'':\n      ''707'':\n      - 768\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''707'':\n      ''708'':\n      - 769\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''708'':\n      ''709'':\n      - 770\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''709'':\n      ''710'':\n      - 771\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''71'':\n      ''72'':\n      - 77\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''710'':\n      ''711'':\n      - 772\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''711'':\n      ''712'':\n      - 773\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''712'':\n      ''713'':\n      - 774\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''713'':\n      ''714'':\n      - 775\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''714'':\n      ''715'':\n      - 776\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''715'':\n      ''717'':\n      - 777\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''716'':\n      ''728'':\n      - 778\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''717'':\n      ''718'':\n      - 779\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''718'':\n      ''719'':\n      - 780\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''719'':\n      ''720'':\n      - 781\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''72'':\n      ''73'':\n      - 78\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''720'':\n      ''721'':\n      - 782\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''721'':\n      ''722'':\n      - 783\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        V: 1\n      ''723'':\n      - 784\n      - 1\n      - T1: 1\n        T2: 1\n    ''722'':\n      ''724'':\n      - 785\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        V: 1\n    ''723'':\n      ''724'':\n      - 786\n      - 1\n      - T1: 1\n        T2: 1\n    ''724'':\n      ''725'':\n      - 787\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''725'':\n      ''726'':\n      - 788\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''726'':\n      ''727'':\n      - 789\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''727'':\n      ''729'':\n      - 790\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''728'':\n      ''740'':\n      - 791\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''729'':\n      ''730'':\n      - 792\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''73'':\n      ''74'':\n      - 79\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''730'':\n      ''731'':\n      - 793\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''731'':\n      ''732'':\n      - 794\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''732'':\n      ''733'':\n      - 795\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''733'':\n      ''734'':\n      - 796\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''734'':\n      ''735'':\n      - 797\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''735'':\n      ''736'':\n      - 798\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''736'':\n      ''737'':\n      - 799\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''737'':\n      ''738'':\n      - 800\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''738'':\n      ''741'':\n      - 801\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''739'':\n      ''857'':\n      - 802\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''74'':\n      ''75'':\n      - 80\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''740'':\n      ''751'':\n      - 803\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''741'':\n      ''742'':\n      - 804\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''742'':\n      ''743'':\n      - 805\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''743'':\n      ''744'':\n      - 806\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''744'':\n      ''745'':\n      - 807\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''745'':\n      ''746'':\n      - 808\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''746'':\n      ''747'':\n      - 809\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''747'':\n      ''748'':\n      - 810\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''748'':\n      ''749'':\n      - 811\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''749'':\n      ''750'':\n      - 812\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''75'':\n      ''76'':\n      - 81\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''750'':\n      ''752'':\n      - 813\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''751'':\n      ''762'':\n      - 814\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''752'':\n      ''753'':\n      - 815\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''753'':\n      ''754'':\n      - 816\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''754'':\n      ''755'':\n      - 817\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''755'':\n      ''756'':\n      - 818\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''756'':\n      ''757'':\n      - 819\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''757'':\n      ''758'':\n      - 820\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''758'':\n      ''759'':\n      - 821\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''759'':\n      ''760'':\n      - 822\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''76'':\n      ''77'':\n      - 82\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''760'':\n      ''761'':\n      - 823\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''761'':\n      ''763'':\n      - 824\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''762'':\n      ''773'':\n      - 825\n      - 1\n      - B: 1\n        L: 1\n        T1: 1\n        T2: 1\n      ''774'':\n      - 826\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        U: 1\n        V: 1\n    ''763'':\n      ''764'':\n      - 827\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''764'':\n      ''765'':\n      - 828\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''765'':\n      ''766'':\n      - 829\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''766'':\n      ''767'':\n      - 830\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''767'':\n      ''768'':\n      - 831\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''768'':\n      ''769'':\n      - 832\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''769'':\n      ''770'':\n      - 833\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''77'':\n      ''79'':\n      - 83\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''770'':\n      ''771'':\n      - 834\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''771'':\n      ''772'':\n      - 835\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''772'':\n      ''775'':\n      - 836\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''773'':\n      ''786'':\n      - 837\n      - 1\n      - B: 1\n        L: 1\n        T1: 1\n        T2: 1\n    ''774'':\n      ''786'':\n      - 838\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        U: 1\n        V: 1\n    ''775'':\n      ''776'':\n      - 839\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''776'':\n      ''777'':\n      - 840\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''777'':\n      ''778'':\n      - 841\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''778'':\n      ''779'':\n      - 842\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''779'':\n      ''780'':\n      - 843\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''78'':\n      ''91'':\n      - 84\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''780'':\n      ''781'':\n      - 844\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''781'':\n      ''782'':\n      - 846\n      - 1\n      - A: 1\n        B: 1\n        J: 1\n        L: 1\n        T1: 1\n        T2: 1\n        V: 1\n      ''783'':\n      - 845\n      - 1\n      - C: 1\n        D: 1\n        F: 1\n        M: 1\n        S: 1\n    ''782'':\n      ''784'':\n      - 847\n      - 1\n      - A: 1\n        B: 1\n        J: 1\n        L: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''783'':\n      ''784'':\n      - 848\n      - 1\n      - C: 1\n        D: 1\n        F: 1\n        M: 1\n        S: 1\n    ''784'':\n      ''785'':\n      - 849\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''785'':\n      ''787'':\n      - 850\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''786'':\n      ''797'':\n      - 851\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''787'':\n      ''788'':\n      - 852\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''788'':\n      ''789'':\n      - 855\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n      ''792'':\n      - 854\n      - 1\n      - F: 1\n      ''795'':\n      - 853\n      - 1\n      - V: 1\n    ''789'':\n      ''790'':\n      - 856\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''79'':\n      ''80'':\n      - 85\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''790'':\n      ''791'':\n      - 857\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''791'':\n      ''792'':\n      - 858\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''792'':\n      ''793'':\n      - 859\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''793'':\n      ''794'':\n      - 860\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''794'':\n      ''795'':\n      - 861\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''795'':\n      ''796'':\n      - 862\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''796'':\n      ''798'':\n      - 863\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''797'':\n      ''808'':\n      - 864\n      - 1\n      - B: 1\n        F: 1\n        L: 1\n        U: 1\n        V: 1\n      ''809'':\n      - 865\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''798'':\n      ''799'':\n      - 866\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''799'':\n      ''800'':\n      - 867\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''8'':\n      ''11'':\n      - 9\n      - 1\n      - B: 1\n        L: 1\n    ''80'':\n      ''81'':\n      - 86\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''800'':\n      ''801'':\n      - 868\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''801'':\n      ''802'':\n      - 869\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''802'':\n      ''803'':\n      - 870\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''803'':\n      ''804'':\n      - 871\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''804'':\n      ''805'':\n      - 872\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n      ''806'':\n      - 873\n      - 1\n      - F: 1\n    ''805'':\n      ''806'':\n      - 874\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''806'':\n      ''807'':\n      - 875\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''807'':\n      ''810'':\n      - 876\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''808'':\n      ''821'':\n      - 877\n      - 1\n      - B: 1\n        F: 1\n        L: 1\n        U: 1\n        V: 1\n    ''809'':\n      ''821'':\n      - 878\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''81'':\n      ''82'':\n      - 87\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''810'':\n      ''811'':\n      - 879\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''811'':\n      ''812'':\n      - 881\n      - 1\n      - J: 1\n      ''813'':\n      - 880\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''812'':\n      ''814'':\n      - 882\n      - 1\n      - J: 1\n    ''813'':\n      ''815'':\n      - 883\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''814'':\n      ''815'':\n      - 884\n      - 1\n      - J: 1\n    ''815'':\n      ''816'':\n      - 885\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''816'':\n      ''817'':\n      - 886\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''817'':\n      ''818'':\n      - 887\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''818'':\n      ''819'':\n      - 888\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''819'':\n      ''820'':\n      - 889\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''82'':\n      ''83'':\n      - 88\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''820'':\n      ''822'':\n      - 890\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''821'':\n      ''834'':\n      - 891\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''822'':\n      ''823'':\n      - 892\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''823'':\n      ''824'':\n      - 893\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''824'':\n      ''825'':\n      - 894\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''825'':\n      ''826'':\n      - 895\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''826'':\n      ''827'':\n      - 896\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''827'':\n      ''828'':\n      - 897\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''828'':\n      ''829'':\n      - 899\n      - 1\n      - B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        V: 1\n      ''830'':\n      - 900\n      - 1\n      - T1: 1\n      ''831'':\n      - 898\n      - 1\n      - A: 1\n    ''829'':\n      ''832'':\n      - 901\n      - 1\n      - B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        V: 1\n    ''83'':\n      ''84'':\n      - 91\n      - 1\n      - L: 1\n      ''85'':\n      - 89\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''86'':\n      - 90\n      - 1\n      - T1: 1\n    ''830'':\n      ''832'':\n      - 902\n      - 1\n      - T1: 1\n    ''831'':\n      ''832'':\n      - 903\n      - 1\n      - A: 1\n    ''832'':\n      ''833'':\n      - 904\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''833'':\n      ''835'':\n      - 905\n      - 1\n      - B: 1\n        L: 1\n      ''836'':\n      - 906\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''834'':\n      ''846'':\n      - 907\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''835'':\n      ''837'':\n      - 908\n      - 1\n      - B: 1\n        L: 1\n    ''836'':\n      ''837'':\n      - 909\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''837'':\n      ''838'':\n      - 910\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''838'':\n      ''839'':\n      - 911\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''839'':\n      ''840'':\n      - 912\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''84'':\n      ''87'':\n      - 92\n      - 1\n      - L: 1\n    ''840'':\n      ''841'':\n      - 913\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''841'':\n      ''842'':\n      - 914\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''842'':\n      ''843'':\n      - 915\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''843'':\n      ''844'':\n      - 916\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''844'':\n      ''845'':\n      - 917\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''845'':\n      ''847'':\n      - 918\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''846'':\n      ''858'':\n      - 919\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''847'':\n      ''848'':\n      - 920\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''848'':\n      ''849'':\n      - 921\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''849'':\n      ''850'':\n      - 922\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''85'':\n      ''87'':\n      - 93\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''850'':\n      ''851'':\n      - 923\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''851'':\n      ''852'':\n      - 924\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''852'':\n      ''853'':\n      - 925\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''853'':\n      ''854'':\n      - 926\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''854'':\n      ''855'':\n      - 927\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''855'':\n      ''856'':\n      - 928\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''856'':\n      ''859'':\n      - 929\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''857'':\n      ''971'':\n      - 930\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''858'':\n      ''870'':\n      - 931\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''859'':\n      ''860'':\n      - 932\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''86'':\n      ''87'':\n      - 94\n      - 1\n      - T1: 1\n    ''860'':\n      ''861'':\n      - 933\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n      ''863'':\n      - 934\n      - 1\n      - M: 1\n    ''861'':\n      ''862'':\n      - 935\n      - 1\n      - L: 1\n      ''863'':\n      - 936\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''862'':\n      ''864'':\n      - 937\n      - 1\n      - L: 1\n    ''863'':\n      ''864'':\n      - 938\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''864'':\n      ''865'':\n      - 939\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''865'':\n      ''866'':\n      - 940\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''866'':\n      ''867'':\n      - 941\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''867'':\n      ''868'':\n      - 942\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''868'':\n      ''869'':\n      - 943\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''869'':\n      ''871'':\n      - 944\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''87'':\n      ''88'':\n      - 95\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''870'':\n      ''882'':\n      - 945\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''871'':\n      ''872'':\n      - 946\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''872'':\n      ''873'':\n      - 947\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''873'':\n      ''874'':\n      - 948\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''874'':\n      ''875'':\n      - 949\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''875'':\n      ''876'':\n      - 951\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n      ''877'':\n      - 950\n      - 1\n      - L: 1\n    ''876'':\n      ''878'':\n      - 952\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''877'':\n      ''878'':\n      - 953\n      - 1\n      - L: 1\n    ''878'':\n      ''879'':\n      - 954\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''879'':\n      ''880'':\n      - 955\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''88'':\n      ''89'':\n      - 96\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''880'':\n      ''881'':\n      - 956\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''881'':\n      ''883'':\n      - 957\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''882'':\n      ''893'':\n      - 958\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''883'':\n      ''884'':\n      - 959\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''884'':\n      ''885'':\n      - 960\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''885'':\n      ''886'':\n      - 961\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''886'':\n      ''887'':\n      - 962\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''887'':\n      ''888'':\n      - 963\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''888'':\n      ''889'':\n      - 964\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''889'':\n      ''890'':\n      - 965\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''89'':\n      ''90'':\n      - 97\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''890'':\n      ''891'':\n      - 966\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''891'':\n      ''892'':\n      - 967\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''892'':\n      ''894'':\n      - 968\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''893'':\n      ''905'':\n      - 969\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''894'':\n      ''895'':\n      - 970\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''895'':\n      ''896'':\n      - 971\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''896'':\n      ''897'':\n      - 972\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''897'':\n      ''898'':\n      - 973\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''898'':\n      ''899'':\n      - 974\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''899'':\n      ''900'':\n      - 975\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''9'':\n      ''10'':\n      - 10\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''90'':\n      ''92'':\n      - 98\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''900'':\n      ''901'':\n      - 977\n      - 1\n      - B: 1\n        L: 1\n        V: 1\n      ''902'':\n      - 976\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''901'':\n      ''903'':\n      - 978\n      - 1\n      - B: 1\n        L: 1\n        V: 1\n    ''902'':\n      ''903'':\n      - 979\n      - 1\n      - A: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''903'':\n      ''904'':\n      - 980\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''904'':\n      ''906'':\n      - 981\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''905'':\n      ''916'':\n      - 982\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''906'':\n      ''907'':\n      - 983\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''907'':\n      ''908'':\n      - 984\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''908'':\n      ''909'':\n      - 985\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''909'':\n      ''910'':\n      - 986\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''91'':\n      ''102'':\n      - 99\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''910'':\n      ''911'':\n      - 987\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''911'':\n      ''912'':\n      - 988\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''912'':\n      ''913'':\n      - 989\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''913'':\n      ''914'':\n      - 990\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''914'':\n      ''915'':\n      - 991\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''915'':\n      ''917'':\n      - 992\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''916'':\n      ''927'':\n      - 993\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''917'':\n      ''918'':\n      - 994\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''918'':\n      ''919'':\n      - 995\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''919'':\n      ''920'':\n      - 996\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''92'':\n      ''93'':\n      - 100\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''920'':\n      ''921'':\n      - 998\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n      ''981'':\n      - 997\n      - 1\n      - D: 1\n    ''921'':\n      ''922'':\n      - 999\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''922'':\n      ''923'':\n      - 1000\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''923'':\n      ''924'':\n      - 1001\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''924'':\n      ''925'':\n      - 1002\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''925'':\n      ''926'':\n      - 1003\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''926'':\n      ''928'':\n      - 1004\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''927'':\n      ''938'':\n      - 1005\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''928'':\n      ''929'':\n      - 1006\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''929'':\n      ''930'':\n      - 1007\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''93'':\n      ''94'':\n      - 101\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''930'':\n      ''931'':\n      - 1008\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''931'':\n      ''932'':\n      - 1009\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''932'':\n      ''933'':\n      - 1010\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''933'':\n      ''934'':\n      - 1011\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''934'':\n      ''935'':\n      - 1012\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''935'':\n      ''936'':\n      - 1013\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''936'':\n      ''937'':\n      - 1014\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''937'':\n      ''939'':\n      - 1015\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''938'':\n      ''949'':\n      - 1016\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''939'':\n      ''940'':\n      - 1017\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''94'':\n      ''95'':\n      - 102\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''940'':\n      ''941'':\n      - 1018\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''941'':\n      ''942'':\n      - 1019\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''942'':\n      ''943'':\n      - 1020\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''943'':\n      ''944'':\n      - 1021\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''944'':\n      ''945'':\n      - 1022\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''945'':\n      ''946'':\n      - 1023\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''946'':\n      ''947'':\n      - 1024\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''947'':\n      ''948'':\n      - 1025\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''948'':\n      ''950'':\n      - 1026\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''949'':\n      ''960'':\n      - 1027\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''95'':\n      ''96'':\n      - 103\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''950'':\n      ''951'':\n      - 1028\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''951'':\n      ''952'':\n      - 1029\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''952'':\n      ''953'':\n      - 1030\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''953'':\n      ''954'':\n      - 1031\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''954'':\n      ''955'':\n      - 1032\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''955'':\n      ''956'':\n      - 1033\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''956'':\n      ''957'':\n      - 1034\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''957'':\n      ''958'':\n      - 1035\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''958'':\n      ''959'':\n      - 1036\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''959'':\n      ''961'':\n      - 1037\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''96'':\n      ''97'':\n      - 104\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''960'':\n      ''972'':\n      - 1038\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''961'':\n      ''962'':\n      - 1039\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''962'':\n      ''963'':\n      - 1040\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''963'':\n      ''964'':\n      - 1041\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''964'':\n      ''965'':\n      - 1042\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''965'':\n      ''966'':\n      - 1043\n      - 1\n      - L: 1\n      ''967'':\n      - 1044\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''966'':\n      ''967'':\n      - 1045\n      - 1\n      - L: 1\n    ''967'':\n      ''968'':\n      - 1047\n      - 1\n      - A: 1\n        C: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n      ''970'':\n      - 1046\n      - 1\n      - B: 1\n        L: 1\n        V: 1\n    ''968'':\n      ''969'':\n      - 1048\n      - 1\n      - A: 1\n        C: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''969'':\n      ''970'':\n      - 1049\n      - 1\n      - A: 1\n        C: 1\n        F: 1\n        J: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n    ''97'':\n      ''98'':\n      - 105\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''970'':\n      ''973'':\n      - 1050\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''971'':\n      ''3'':\n      - 1051\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''972'':\n      ''983'':\n      - 1053\n      - 1\n      - C: 1\n        D: 1\n        J: 1\n        M: 1\n        S: 1\n      ''984'':\n      - 1054\n      - 1\n      - B: 1\n        F: 1\n        L: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''985'':\n      - 1052\n      - 1\n      - A: 1\n    ''973'':\n      ''974'':\n      - 1055\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''974'':\n      ''975'':\n      - 1056\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''975'':\n      ''976'':\n      - 1057\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''976'':\n      ''977'':\n      - 1058\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''977'':\n      ''978'':\n      - 1059\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''978'':\n      ''979'':\n      - 1060\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''979'':\n      ''980'':\n      - 1061\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''98'':\n      ''99'':\n      - 106\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''980'':\n      ''981'':\n      - 1062\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''981'':\n      ''982'':\n      - 1063\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''982'':\n      ''986'':\n      - 1064\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''983'':\n      ''997'':\n      - 1065\n      - 1\n      - C: 1\n        D: 1\n        J: 1\n        M: 1\n        S: 1\n    ''984'':\n      ''997'':\n      - 1066\n      - 1\n      - B: 1\n        F: 1\n        L: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''985'':\n      ''997'':\n      - 1067\n      - 1\n      - A: 1\n    ''986'':\n      ''987'':\n      - 1068\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''987'':\n      ''988'':\n      - 1069\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''988'':\n      ''989'':\n      - 1070\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''989'':\n      ''990'':\n      - 1071\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''99'':\n      ''100'':\n      - 107\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        U: 1\n        V: 1\n    ''990'':\n      ''991'':\n      - 1072\n      - 1\n      - M: 1\n      ''992'':\n      - 1073\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''991'':\n      ''993'':\n      - 1074\n      - 1\n      - M: 1\n    ''992'':\n      ''994'':\n      - 1075\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''993'':\n      ''994'':\n      - 1076\n      - 1\n      - M: 1\n    ''994'':\n      ''995'':\n      - 1077\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''995'':\n      ''996'':\n      - 1078\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''996'':\n      ''998'':\n      - 1079\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''997'':\n      ''1010'':\n      - 1080\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        L: 1\n        M: 1\n        S: 1\n        T2: 1\n        U: 1\n        V: 1\n      ''1011'':\n      - 1082\n      - 1\n      - J: 1\n      ''1012'':\n      - 1081\n      - 1\n      - T1: 1\n    ''998'':\n      ''999'':\n      - 1083\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n    ''999'':\n      ''1000'':\n      - 1084\n      - 1\n      - A: 1\n        B: 1\n        C: 1\n        D: 1\n        F: 1\n        J: 1\n        L: 1\n        M: 1\n        S: 1\n        T1: 1\n        T2: 1\n        V: 1\n- ~\n- ~\n- - 2286\n  - ''0'':\n    - - ''0''\n      - *2\n    ''10'':\n    - - ''11''\n      - *115\n    ''100'':\n    - - ''108''\n      - *93\n    ''1000'':\n    - - ''1085''\n      - *99\n    ''1001'':\n    - - ''1086''\n      - *100\n    ''1002'':\n    - - ''1087''\n      - *101\n    - - ''1088''\n      - *102\n    ''1003'':\n    - - ''1089''\n      - *103\n    ''1004'':\n    - - ''1090''\n      - *105\n    ''1005'':\n    - - ''1092''\n      - *107\n    - - ''1091''\n      - *106\n    ''1006'':\n    - - ''1093''\n      - *108\n    ''1007'':\n    - - ''1094''\n      - *109\n    ''1008'':\n    - - ''1095''\n      - *110\n    ''1009'':\n    - - ''1096''\n      - *111\n    ''101'':\n    - - ''110''\n      - *116\n    - - ''109''\n      - *104\n    ''1010'':\n    - - ''1098''\n      - *113\n    - - ''1097''\n      - *112\n    ''1011'':\n    - - ''1099''\n      - *114\n    ''1012'':\n    - - ''1100''\n      - *117\n    ''1013'':\n    - - ''1101''\n      - *118\n    ''1014'':\n    - - ''1102''\n      - *119\n    ''1015'':\n    - - ''1103''\n      - *120\n    ''1016'':\n    - - ''1104''\n      - *121\n    ''1017'':\n    - - ''1105''\n      - *122\n    ''1018'':\n    - - ''1106''\n      - *123\n    ''1019'':\n    - - ''1107''\n      - *124\n    ''102'':\n    - - ''111''\n      - *127\n    ''1020'':\n    - - ''1108''\n      - *125\n    ''1021'':\n    - - ''1109''\n      - *126\n    ''1022'':\n    - - ''1110''\n      - *128\n    ''1023'':\n    - - ''1111''\n      - *129\n    ''1024'':\n    - - ''1112''\n      - *130\n    ''1025'':\n    - - ''1113''\n      - *131\n    ''1026'':\n    - - ''1114''\n      - *132\n    ''1027'':\n    - - ''1115''\n      - *133\n    ''1028'':\n    - - ''1116''\n      - *134\n    ''1029'':\n    - - ''1117''\n      - *135\n    ''103'':\n    - - ''112''\n      - *138\n    ''1030'':\n    - - ''1118''\n      - *136\n    ''1031'':\n    - - ''1119''\n      - *137\n    ''1032'':\n    - - ''1120''\n      - *139\n    ''1033'':\n    - - ''1121''\n      - *140\n    ''1034'':\n    - - ''1122''\n      - *141\n    ''1035'':\n    - - ''1123''\n      - *142\n    ''1036'':\n    - - ''1125''\n      - *144\n    - - ''1124''\n      - *143\n    ''1037'':\n    - - ''1126''\n      - *145\n    ''1038'':\n    - - ''1128''\n      - *147\n    - - ''1127''\n      - *146\n    ''1039'':\n    - - ''1129''\n      - *148\n    ''104'':\n    - - ''113''\n      - *149\n    ''1040'':\n    - - ''1130''\n      - *150\n    ''1041'':\n    - - ''1131''\n      - *151\n    ''1042'':\n    - - ''1132''\n      - *152\n    ''1043'':\n    - - ''1133''\n      - *153\n    ''1044'':\n    - - ''1134''\n      - *154\n    ''1045'':\n    - - ''1135''\n      - *155\n    ''1046'':\n    - - ''1136''\n      - *156\n    ''1047'':\n    - - ''1137''\n      - *157\n    ''1048'':\n    - - ''1138''\n      - *158\n    ''1049'':\n    - - ''1139''\n      - *159\n    ''105'':\n    - - ''114''\n      - *160\n    ''1050'':\n    - - ''1140''\n      - *161\n    ''1051'':\n    - - ''1141''\n      - *162\n    ''1052'':\n    - - ''1142''\n      - *163\n    ''1053'':\n    - - ''1143''\n      - *164\n    ''1054'':\n    - - ''1144''\n      - *165\n    ''1055'':\n    - - ''1146''\n      - *167\n    - - ''1145''\n      - *166\n    - - ''1147''\n      - *168\n    ''1056'':\n    - - ''1148''\n      - *169\n    ''1057'':\n    - - ''1149''\n      - *170\n    ''1058'':\n    - - ''1150''\n      - *172\n    ''1059'':\n    - - ''1151''\n      - *173\n    ''106'':\n    - - ''115''\n      - *171\n    ''1060'':\n    - - ''1152''\n      - *174\n    ''1061'':\n    - - ''1153''\n      - *175\n    - - ''1154''\n      - *176\n    ''1062'':\n    - - ''1155''\n      - *177\n    ''1063'':\n    - - ''1156''\n      - *178\n    ''1064'':\n    - - ''1157''\n      - *179\n    - - ''1158''\n      - *180\n    ''1065'':\n    - - ''1159''\n      - *181\n    ''1066'':\n    - - ''1160''\n      - *183\n    ''1067'':\n    - - ''1161''\n      - *184\n    ''1068'':\n    - - ''1162''\n      - *185\n    ''1069'':\n    - - ''1163''\n      - *186\n    ''107'':\n    - - ''116''\n      - *182\n    ''1070'':\n    - - ''1164''\n      - *187\n    ''1071'':\n    - - ''1165''\n      - *188\n    ''1072'':\n    - - ''1166''\n      - *189\n    - - ''1167''\n      - *190\n    ''1073'':\n    - - ''1168''\n      - *191\n    ''1074'':\n    - - ''1169''\n      - *192\n    ''1075'':\n    - - ''1170''\n      - *194\n    ''1076'':\n    - - ''1171''\n      - *195\n    ''1077'':\n    - - ''1172''\n      - *196\n    ''1078'':\n    - - ''1173''\n      - *197\n    ''1079'':\n    - - ''1174''\n      - *198\n    ''108'':\n    - - ''117''\n      - *193\n    ''1080'':\n    - - ''1175''\n      - *199\n    ''1081'':\n    - - ''1176''\n      - *200\n    ''1082'':\n    - - ''1177''\n      - *201\n    ''1083'':\n    - - ''1178''\n      - *202\n    ''1084'':\n    - - ''1179''\n      - *203\n    ''1085'':\n    - - ''1180''\n      - *205\n    ''1086'':\n    - - ''1181''\n      - *206\n    ''1087'':\n    - - ''1182''\n      - *207\n    ''1088'':\n    - - ''1183''\n      - *208\n    ''1089'':\n    - - ''1184''\n      - *209\n    ''109'':\n    - - ''118''\n      - *204\n    ''1090'':\n    - - ''1185''\n      - *210\n    ''1091'':\n    - - ''1186''\n      - *211\n    ''1092'':\n    - - ''1187''\n      - *212\n    ''1093'':\n    - - ''1188''\n      - *213\n    ''1094'':\n    - - ''1189''\n      - *214\n    ''11'':\n    - - ''12''\n      - *216\n    ''110'':\n    - - ''119''\n      - *215\n    ''111'':\n    - - ''120''\n      - *217\n    ''112'':\n    - - ''121''\n      - *218\n    ''113'':\n    - - ''122''\n      - *219\n    ''114'':\n    - - ''123''\n      - *220\n    ''115'':\n    - - ''124''\n      - *221\n    ''116'':\n    - - ''125''\n      - *222\n    - - ''126''\n      - *223\n    ''117'':\n    - - ''127''\n      - *224\n    ''118'':\n    - - ''128''\n      - *225\n    ''119'':\n    - - ''129''\n      - *226\n    ''12'':\n    - - ''13''\n      - *227\n    ''120'':\n    - - ''130''\n      - *228\n    ''121'':\n    - - ''131''\n      - *229\n    ''122'':\n    - - ''132''\n      - *230\n    ''123'':\n    - - ''133''\n      - *231\n    ''124'':\n    - - ''134''\n      - *232\n    ''125'':\n    - - ''135''\n      - *233\n    ''126'':\n    - - ''136''\n      - *234\n    ''127'':\n    - - ''137''\n      - *235\n    ''128'':\n    - - ''138''\n      - *236\n    ''129'':\n    - - ''139''\n      - *237\n    ''13'':\n    - - ''14''\n      - *238\n    ''130'':\n    - - ''140''\n      - *239\n    ''131'':\n    - - ''141''\n      - *240\n    ''132'':\n    - - ''142''\n      - *241\n    ''133'':\n    - - ''143''\n      - *242\n    ''134'':\n    - - ''144''\n      - *243\n    ''135'':\n    - - ''145''\n      - *244\n    ''136'':\n    - - ''146''\n      - *245\n    ''137'':\n    - - ''147''\n      - *246\n    - - ''148''\n      - *247\n    ''138'':\n    - - ''149''\n      - *248\n    ''139'':\n    - - ''150''\n      - *250\n    ''14'':\n    - - ''15''\n      - *249\n    ''140'':\n    - - ''151''\n      - *251\n    ''141'':\n    - - ''152''\n      - *252\n    ''142'':\n    - - ''153''\n      - *253\n    ''143'':\n    - - ''154''\n      - *254\n    ''144'':\n    - - ''155''\n      - *255\n    - - ''158''\n      - *258\n    - - ''156''\n      - *256\n    - - ''159''\n      - *259\n    - - ''157''\n      - *257\n    ''145'':\n    - - ''160''\n      - *261\n    ''146'':\n    - - ''161''\n      - *262\n    ''147'':\n    - - ''162''\n      - *263\n    ''148'':\n    - - ''163''\n      - *264\n    ''149'':\n    - - ''164''\n      - *265\n    ''15'':\n    - - ''16''\n      - *260\n    ''150'':\n    - - ''165''\n      - *266\n    ''151'':\n    - - ''166''\n      - *267\n    ''152'':\n    - - ''167''\n      - *268\n    ''153'':\n    - - ''168''\n      - *269\n    ''154'':\n    - - ''169''\n      - *270\n    ''155'':\n    - - ''170''\n      - *272\n    ''156'':\n    - - ''171''\n      - *273\n    ''157'':\n    - - ''172''\n      - *274\n    ''158'':\n    - - ''173''\n      - *275\n    ''159'':\n    - - ''174''\n      - *276\n    ''16'':\n    - - ''17''\n      - *271\n    ''160'':\n    - - ''175''\n      - *277\n    ''161'':\n    - - ''176''\n      - *278\n    ''162'':\n    - - ''177''\n      - *279\n    ''163'':\n    - - ''178''\n      - *280\n    - - ''179''\n      - *281\n    ''164'':\n    - - ''180''\n      - *283\n    ''165'':\n    - - ''181''\n      - *284\n    ''166'':\n    - - ''182''\n      - *285\n    ''167'':\n    - - ''183''\n      - *286\n    ''168'':\n    - - ''184''\n      - *287\n    ''169'':\n    - - ''185''\n      - *288\n    ''17'':\n    - - ''18''\n      - *282\n    ''170'':\n    - - ''186''\n      - *289\n    ''171'':\n    - - ''187''\n      - *290\n    ''172'':\n    - - ''188''\n      - *291\n    ''173'':\n    - - ''189''\n      - *292\n    ''174'':\n    - - ''190''\n      - *294\n    ''175'':\n    - - ''191''\n      - *295\n    ''176'':\n    - - ''192''\n      - *296\n    ''177'':\n    - - ''193''\n      - *297\n    ''178'':\n    - - ''194''\n      - *298\n    ''179'':\n    - - ''195''\n      - *299\n    ''18'':\n    - - ''19''\n      - *293\n    ''180'':\n    - - ''196''\n      - *300\n    ''181'':\n    - - ''197''\n      - *301\n    ''182'':\n    - - ''198''\n      - *302\n    ''183'':\n    - - ''199''\n      - *303\n    ''184'':\n    - - ''200''\n      - *306\n    ''185'':\n    - - ''201''\n      - *307\n    ''186'':\n    - - ''202''\n      - *308\n    - - ''203''\n      - *309\n    ''187'':\n    - - ''204''\n      - *310\n    ''188'':\n    - - ''205''\n      - *311\n    ''189'':\n    - - ''206''\n      - *312\n    ''19'':\n    - - ''20''\n      - *305\n    ''190'':\n    - - ''207''\n      - *313\n    ''191'':\n    - - ''208''\n      - *314\n    ''192'':\n    - - ''209''\n      - *315\n    ''193'':\n    - - ''211''\n      - *318\n    - - ''210''\n      - *317\n    ''194'':\n    - - ''212''\n      - *319\n    ''195'':\n    - - ''214''\n      - *321\n    - - ''213''\n      - *320\n    ''196'':\n    - - ''215''\n      - *322\n    ''197'':\n    - - ''216''\n      - *323\n    ''198'':\n    - - ''217''\n      - *324\n    ''199'':\n    - - ''218''\n      - *325\n    ''2'':\n    - - ''1''\n      - *3\n    - - ''2''\n      - *304\n    ''20'':\n    - - ''22''\n      - *327\n    - - ''21''\n      - *316\n    ''200'':\n    - - ''219''\n      - *326\n    ''201'':\n    - - ''220''\n      - *328\n    ''202'':\n    - - ''221''\n      - *329\n    ''203'':\n    - - ''222''\n      - *330\n    - - ''223''\n      - *331\n    ''204'':\n    - - ''224''\n      - *332\n    ''205'':\n    - - ''225''\n      - *333\n    ''206'':\n    - - ''226''\n      - *334\n    ''207'':\n    - - ''227''\n      - *335\n    ''208'':\n    - - ''228''\n      - *336\n    ''209'':\n    - - ''229''\n      - *337\n    ''21'':\n    - - ''23''\n      - *338\n    ''210'':\n    - - ''230''\n      - *339\n    ''211'':\n    - - ''231''\n      - *340\n    ''212'':\n    - - ''232''\n      - *341\n    ''213'':\n    - - ''233''\n      - *342\n    ''214'':\n    - - ''234''\n      - *343\n    ''215'':\n    - - ''235''\n      - *344\n    ''216'':\n    - - ''236''\n      - *345\n    ''217'':\n    - - ''237''\n      - *346\n    ''218'':\n    - - ''238''\n      - *347\n    ''219'':\n    - - ''239''\n      - *348\n    ''22'':\n    - - ''24''\n      - *349\n    ''220'':\n    - - ''240''\n      - *350\n    ''221'':\n    - - ''241''\n      - *351\n    ''222'':\n    - - ''242''\n      - *352\n    ''223'':\n    - - ''243''\n      - *353\n    ''224'':\n    - - ''244''\n      - *354\n    ''225'':\n    - - ''246''\n      - *356\n    - - ''245''\n      - *355\n    ''226'':\n    - - ''247''\n      - *357\n    ''227'':\n    - - ''248''\n      - *358\n    ''228'':\n    - - ''249''\n      - *359\n    ''229'':\n    - - ''250''\n      - *361\n    ''23'':\n    - - ''25''\n      - *360\n    ''230'':\n    - - ''251''\n      - *362\n    ''231'':\n    - - ''252''\n      - *363\n    ''232'':\n    - - ''253''\n      - *364\n    ''233'':\n    - - ''254''\n      - *365\n    ''234'':\n    - - ''255''\n      - *366\n    ''235'':\n    - - ''256''\n      - *367\n    ''236'':\n    - - ''257''\n      - *368\n    ''237'':\n    - - ''258''\n      - *369\n    ''238'':\n    - - ''259''\n      - *370\n    ''239'':\n    - - ''260''\n      - *372\n    ''24'':\n    - - ''26''\n      - *371\n    ''240'':\n    - - ''261''\n      - *373\n    ''241'':\n    - - ''262''\n      - *374\n    ''242'':\n    - - ''263''\n      - *375\n    ''243'':\n    - - ''264''\n      - *376\n    ''244'':\n    - - ''265''\n      - *377\n    ''245'':\n    - - ''266''\n      - *378\n    ''246'':\n    - - ''267''\n      - *379\n    ''247'':\n    - - ''268''\n      - *380\n    ''248'':\n    - - ''269''\n      - *381\n    ''249'':\n    - - ''270''\n      - *383\n    ''25'':\n    - - ''27''\n      - *382\n    ''250'':\n    - - ''272''\n      - *385\n    - - ''271''\n      - *384\n    ''251'':\n    - - ''273''\n      - *386\n    ''252'':\n    - - ''274''\n      - *387\n    ''253'':\n    - - ''276''\n      - *389\n    - - ''275''\n      - *388\n    ''254'':\n    - - ''277''\n      - *390\n    ''255'':\n    - - ''278''\n      - *391\n    ''256'':\n    - - ''279''\n      - *392\n    ''257'':\n    - - ''280''\n      - *394\n    ''258'':\n    - - ''281''\n      - *395\n    ''259'':\n    - - ''282''\n      - *396\n    ''26'':\n    - - ''28''\n      - *393\n    ''260'':\n    - - ''283''\n      - *397\n    ''261'':\n    - - ''284''\n      - *398\n    ''262'':\n    - - ''285''\n      - *399\n    ''263'':\n    - - ''286''\n      - *400\n    ''264'':\n    - - ''287''\n      - *401\n    ''265'':\n    - - ''288''\n      - *402\n    ''266'':\n    - - ''289''\n      - *403\n    ''267'':\n    - - ''290''\n      - *405\n    ''268'':\n    - - ''291''\n      - *406\n    ''269'':\n    - - ''292''\n      - *407\n    ''27'':\n    - - ''29''\n      - *404\n    ''270'':\n    - - ''294''\n      - *409\n    - - ''293''\n      - *408\n    ''271'':\n    - - ''295''\n      - *410\n    ''272'':\n    - - ''297''\n      - *412\n    - - ''296''\n      - *411\n    ''273'':\n    - - ''298''\n      - *413\n    ''274'':\n    - - ''299''\n      - *414\n    ''275'':\n    - - ''300''\n      - *417\n    ''276'':\n    - - ''301''\n      - *418\n    ''277'':\n    - - ''302''\n      - *419\n    ''278'':\n    - - ''303''\n      - *420\n    - - ''304''\n      - *421\n    ''279'':\n    - - ''305''\n      - *422\n    ''28'':\n    - - ''30''\n      - *416\n    ''280'':\n    - - ''306''\n      - *423\n    ''281'':\n    - - ''308''\n      - *425\n    - - ''307''\n      - *424\n    ''282'':\n    - - ''309''\n      - *426\n    ''283'':\n    - - ''311''\n      - *429\n    - - ''310''\n      - *428\n    ''284'':\n    - - ''312''\n      - *430\n    ''285'':\n    - - ''313''\n      - *431\n    - - ''314''\n      - *432\n    ''286'':\n    - - ''315''\n      - *433\n    ''287'':\n    - - ''316''\n      - *434\n    ''288'':\n    - - ''317''\n      - *435\n    ''289'':\n    - - ''318''\n      - *436\n    ''29'':\n    - - ''31''\n      - *427\n    ''290'':\n    - - ''319''\n      - *437\n    ''291'':\n    - - ''320''\n      - *439\n    ''292'':\n    - - ''322''\n      - *441\n    - - ''321''\n      - *440\n    ''293'':\n    - - ''323''\n      - *442\n    ''294'':\n    - - ''324''\n      - *443\n    ''295'':\n    - - ''325''\n      - *444\n    ''296'':\n    - - ''326''\n      - *445\n    ''297'':\n    - - ''328''\n      - *447\n    - - ''327''\n      - *446\n    ''298'':\n    - - ''329''\n      - *448\n    ''299'':\n    - - ''330''\n      - *450\n    ''3'':\n    - - ''3''\n      - *415\n    ''30'':\n    - - ''33''\n      - *449\n    - - ''32''\n      - *438\n    ''300'':\n    - - ''331''\n      - *451\n    ''301'':\n    - - ''332''\n      - *452\n    ''302'':\n    - - ''333''\n      - *453\n    ''303'':\n    - - ''334''\n      - *454\n    ''304'':\n    - - ''335''\n      - *455\n    ''305'':\n    - - ''337''\n      - *457\n    - - ''336''\n      - *456\n    ''306'':\n    - - ''338''\n      - *458\n    - - ''339''\n      - *459\n    ''307'':\n    - - ''340''\n      - *461\n    ''308'':\n    - - ''341''\n      - *462\n    ''309'':\n    - - ''342''\n      - *463\n    ''31'':\n    - - ''34''\n      - *460\n    ''310'':\n    - - ''343''\n      - *464\n    ''311'':\n    - - ''344''\n      - *465\n    ''312'':\n    - - ''345''\n      - *466\n    ''313'':\n    - - ''346''\n      - *467\n    ''314'':\n    - - ''347''\n      - *468\n    ''315'':\n    - - ''348''\n      - *469\n    ''316'':\n    - - ''349''\n      - *470\n    ''317'':\n    - - ''350''\n      - *472\n    ''318'':\n    - - ''351''\n      - *473\n    ''319'':\n    - - ''352''\n      - *474\n    ''32'':\n    - - ''35''\n      - *471\n    ''320'':\n    - - ''353''\n      - *475\n    ''321'':\n    - - ''354''\n      - *476\n    ''322'':\n    - - ''355''\n      - *477\n    ''323'':\n    - - ''357''\n      - *479\n    - - ''356''\n      - *478\n    ''324'':\n    - - ''358''\n      - *480\n    ''325'':\n    - - ''359''\n      - *481\n    ''326'':\n    - - ''360''\n      - *483\n    ''327'':\n    - - ''361''\n      - *484\n    ''328'':\n    - - ''362''\n      - *485\n    ''329'':\n    - - ''363''\n      - *486\n    ''33'':\n    - - ''36''\n      - *482\n    ''330'':\n    - - ''364''\n      - *487\n    ''331'':\n    - - ''365''\n      - *488\n    ''332'':\n    - - ''366''\n      - *489\n    ''333'':\n    - - ''367''\n      - *490\n    ''334'':\n    - - ''368''\n      - *491\n    ''335'':\n    - - ''369''\n      - *492\n    ''336'':\n    - - ''370''\n      - *494\n    ''337'':\n    - - ''372''\n      - *496\n    - - ''371''\n      - *495\n    ''338'':\n    - - ''373''\n      - *497\n    ''339'':\n    - - ''374''\n      - *498\n    ''34'':\n    - - ''37''\n      - *493\n    ''340'':\n    - - ''375''\n      - *499\n    ''341'':\n    - - ''376''\n      - *500\n    ''342'':\n    - - ''377''\n      - *501\n    ''343'':\n    - - ''378''\n      - *502\n    ''344'':\n    - - ''379''\n      - *503\n    - - ''380''\n      - *505\n    ''345'':\n    - - ''381''\n      - *506\n    ''346'':\n    - - ''382''\n      - *507\n    ''347'':\n    - - ''383''\n      - *508\n    - - ''384''\n      - *509\n    ''348'':\n    - - ''385''\n      - *510\n    ''349'':\n    - - ''386''\n      - *511\n    ''35'':\n    - - ''38''\n      - *504\n    ''350'':\n    - - ''387''\n      - *512\n    ''351'':\n    - - ''388''\n      - *513\n    ''352'':\n    - - ''389''\n      - *514\n    ''353'':\n    - - ''390''\n      - *516\n    ''354'':\n    - - ''391''\n      - *517\n    ''355'':\n    - - ''392''\n      - *518\n    ''356'':\n    - - ''393''\n      - *519\n    ''357'':\n    - - ''394''\n      - *520\n    ''358'':\n    - - ''395''\n      - *521\n    ''359'':\n    - - ''396''\n      - *522\n    ''36'':\n    - - ''39''\n      - *515\n    ''360'':\n    - - ''397''\n      - *523\n    - - ''398''\n      - *524\n    ''361'':\n    - - ''399''\n      - *525\n    ''362'':\n    - - ''400''\n      - *528\n    - - ''401''\n      - *529\n    ''363'':\n    - - ''402''\n      - *530\n    ''364'':\n    - - ''403''\n      - *531\n    ''365'':\n    - - ''404''\n      - *532\n    ''366'':\n    - - ''406''\n      - *534\n    - - ''405''\n      - *533\n    ''367'':\n    - - ''407''\n      - *535\n    ''368'':\n    - - ''408''\n      - *536\n    ''369'':\n    - - ''409''\n      - *537\n    ''37'':\n    - - ''40''\n      - *527\n    ''370'':\n    - - ''410''\n      - *539\n    ''371'':\n    - - ''411''\n      - *540\n    ''372'':\n    - - ''412''\n      - *541\n    ''373'':\n    - - ''413''\n      - *542\n    ''374'':\n    - - ''414''\n      - *543\n    ''375'':\n    - - ''415''\n      - *544\n    ''376'':\n    - - ''416''\n      - *545\n    ''377'':\n    - - ''417''\n      - *546\n    ''378'':\n    - - ''418''\n      - *547\n    ''379'':\n    - - ''419''\n      - *548\n    ''38'':\n    - - ''41''\n      - *538\n    ''380'':\n    - - ''420''\n      - *550\n    ''381'':\n    - - ''421''\n      - *551\n    ''382'':\n    - - ''422''\n      - *552\n    ''383'':\n    - - ''423''\n      - *553\n    ''384'':\n    - - ''424''\n      - *554\n    ''385'':\n    - - ''425''\n      - *555\n    ''386'':\n    - - ''426''\n      - *556\n    ''387'':\n    - - ''427''\n      - *557\n    ''388'':\n    - - ''428''\n      - *558\n    ''389'':\n    - - ''429''\n      - *559\n    ''39'':\n    - - ''43''\n      - *560\n    - - ''42''\n      - *549\n    ''390'':\n    - - ''430''\n      - *561\n    ''391'':\n    - - ''431''\n      - *562\n    ''392'':\n    - - ''432''\n      - *563\n    - - ''433''\n      - *564\n    ''393'':\n    - - ''434''\n      - *565\n    ''394'':\n    - - ''435''\n      - *566\n    ''395'':\n    - - ''436''\n      - *567\n    ''396'':\n    - - ''437''\n      - *568\n    ''397'':\n    - - ''438''\n      - *569\n    ''398'':\n    - - ''439''\n      - *570\n    ''399'':\n    - - ''440''\n      - *572\n    ''4'':\n    - - ''4''\n      - *526\n    ''40'':\n    - - ''44''\n      - *571\n    ''400'':\n    - - ''441''\n      - *573\n    ''401'':\n    - - ''442''\n      - *574\n    - - ''443''\n      - *575\n    ''402'':\n    - - ''444''\n      - *576\n    ''403'':\n    - - ''445''\n      - *577\n    ''404'':\n    - - ''446''\n      - *578\n    ''405'':\n    - - ''447''\n      - *579\n    ''406'':\n    - - ''449''\n      - *581\n    - - ''448''\n      - *580\n    ''407'':\n    - - ''451''\n      - *584\n    - - ''450''\n      - *583\n    ''408'':\n    - - ''452''\n      - *585\n    ''409'':\n    - - ''453''\n      - *586\n    ''41'':\n    - - ''45''\n      - *582\n    ''410'':\n    - - ''454''\n      - *587\n    ''411'':\n    - - ''455''\n      - *588\n    ''412'':\n    - - ''456''\n      - *589\n    ''413'':\n    - - ''457''\n      - *590\n    ''414'':\n    - - ''458''\n      - *591\n    ''415'':\n    - - ''459''\n      - *592\n    ''416'':\n    - - ''460''\n      - *594\n    ''417'':\n    - - ''461''\n      - *595\n    ''418'':\n    - - ''462''\n      - *596\n    ''419'':\n    - - ''463''\n      - *597\n    ''42'':\n    - - ''46''\n      - *593\n    ''420'':\n    - - ''464''\n      - *598\n    ''421'':\n    - - ''465''\n      - *599\n    ''422'':\n    - - ''466''\n      - *600\n    ''423'':\n    - - ''467''\n      - *601\n    ''424'':\n    - - ''468''\n      - *602\n    ''425'':\n    - - ''469''\n      - *603\n    ''426'':\n    - - ''470''\n      - *605\n    ''427'':\n    - - ''471''\n      - *606\n    ''428'':\n    - - ''472''\n      - *607\n    ''429'':\n    - - ''473''\n      - *608\n    ''43'':\n    - - ''47''\n      - *604\n    ''430'':\n    - - ''474''\n      - *609\n    ''431'':\n    - - ''475''\n      - *610\n    ''432'':\n    - - ''476''\n      - *611\n    ''433'':\n    - - ''477''\n      - *612\n    ''434'':\n    - - ''478''\n      - *613\n    ''435'':\n    - - ''479''\n      - *614\n    ''436'':\n    - - ''480''\n      - *616\n    ''437'':\n    - - ''481''\n      - *617\n    ''438'':\n    - - ''482''\n      - *618\n    ''439'':\n    - - ''483''\n      - *619\n    ''44'':\n    - - ''48''\n      - *615\n    ''440'':\n    - - ''484''\n      - *620\n    ''441'':\n    - - ''485''\n      - *621\n    ''442'':\n    - - ''486''\n      - *622\n    ''443'':\n    - - ''487''\n      - *623\n    ''444'':\n    - - ''488''\n      - *624\n    ''445'':\n    - - ''489''\n      - *625\n    ''446'':\n    - - ''490''\n      - *627\n    ''447'':\n    - - ''491''\n      - *628\n    ''448'':\n    - - ''492''\n      - *629\n    ''449'':\n    - - ''493''\n      - *630\n    ''45'':\n    - - ''49''\n      - *626\n    ''450'':\n    - - ''494''\n      - *631\n    ''451'':\n    - - ''495''\n      - *632\n    ''452'':\n    - - ''496''\n      - *633\n    ''453'':\n    - - ''497''\n      - *634\n    ''454'':\n    - - ''498''\n      - *635\n    - - ''499''\n      - *636\n    ''455'':\n    - - ''500''\n      - *639\n    ''456'':\n    - - ''501''\n      - *640\n    ''457'':\n    - - ''502''\n      - *641\n    ''458'':\n    - - ''503''\n      - *642\n    ''459'':\n    - - ''504''\n      - *643\n    ''46'':\n    - - ''50''\n      - *638\n    ''460'':\n    - - ''505''\n      - *644\n    ''461'':\n    - - ''506''\n      - *645\n    ''462'':\n    - - ''507''\n      - *646\n    ''463'':\n    - - ''508''\n      - *647\n    ''464'':\n    - - ''509''\n      - *648\n    ''465'':\n    - - ''510''\n      - *650\n    ''466'':\n    - - ''511''\n      - *651\n    ''467'':\n    - - ''512''\n      - *652\n    ''468'':\n    - - ''513''\n      - *653\n    ''469'':\n    - - ''514''\n      - *654\n    ''47'':\n    - - ''51''\n      - *649\n    ''470'':\n    - - ''515''\n      - *655\n    ''471'':\n    - - ''516''\n      - *656\n    ''472'':\n    - - ''517''\n      - *657\n    ''473'':\n    - - ''518''\n      - *658\n    ''474'':\n    - - ''519''\n      - *659\n    ''475'':\n    - - ''520''\n      - *661\n    ''476'':\n    - - ''521''\n      - *662\n    ''477'':\n    - - ''522''\n      - *663\n    ''478'':\n    - - ''523''\n      - *664\n    ''479'':\n    - - ''524''\n      - *665\n    ''48'':\n    - - ''52''\n      - *660\n    ''480'':\n    - - ''525''\n      - *666\n    ''481'':\n    - - ''526''\n      - *667\n    ''482'':\n    - - ''527''\n      - *668\n    ''483'':\n    - - ''528''\n      - *669\n    ''484'':\n    - - ''529''\n      - *670\n    ''485'':\n    - - ''530''\n      - *672\n    ''486'':\n    - - ''531''\n      - *673\n    ''487'':\n    - - ''532''\n      - *674\n    ''488'':\n    - - ''533''\n      - *675\n    ''489'':\n    - - ''534''\n      - *676\n    ''49'':\n    - - ''53''\n      - *671\n    ''490'':\n    - - ''535''\n      - *677\n    ''491'':\n    - - ''536''\n      - *678\n    ''492'':\n    - - ''537''\n      - *679\n    ''493'':\n    - - ''540''\n      - *683\n    - - ''539''\n      - *681\n    - - ''541''\n      - *684\n    - - ''538''\n      - *680\n    ''494'':\n    - - ''542''\n      - *685\n    ''495'':\n    - - ''543''\n      - *686\n    ''496'':\n    - - ''544''\n      - *687\n    ''497'':\n    - - ''545''\n      - *688\n    ''498'':\n    - - ''546''\n      - *689\n    ''499'':\n    - - ''547''\n      - *690\n    ''5'':\n    - - ''5''\n      - *637\n    ''50'':\n    - - ''54''\n      - *682\n    ''500'':\n    - - ''549''\n      - *692\n    - - ''548''\n      - *691\n    ''501'':\n    - - ''550''\n      - *694\n    ''502'':\n    - - ''551''\n      - *695\n    ''503'':\n    - - ''552''\n      - *696\n    - - ''553''\n      - *697\n    ''504'':\n    - - ''554''\n      - *698\n    - - ''555''\n      - *699\n    ''505'':\n    - - ''556''\n      - *700\n    ''506'':\n    - - ''557''\n      - *701\n    ''507'':\n    - - ''558''\n      - *702\n    ''508'':\n    - - ''559''\n      - *703\n    ''509'':\n    - - ''560''\n      - *705\n    ''51'':\n    - - ''55''\n      - *693\n    ''510'':\n    - - ''561''\n      - *706\n    ''511'':\n    - - ''562''\n      - *707\n    ''512'':\n    - - ''563''\n      - *708\n    ''513'':\n    - - ''564''\n      - *709\n    ''514'':\n    - - ''565''\n      - *710\n    ''515'':\n    - - ''566''\n      - *711\n    ''516'':\n    - - ''567''\n      - *712\n    ''517'':\n    - - ''568''\n      - *713\n    ''518'':\n    - - ''569''\n      - *714\n    ''519'':\n    - - ''570''\n      - *716\n    ''52'':\n    - - ''56''\n      - *704\n    ''520'':\n    - - ''571''\n      - *717\n    ''521'':\n    - - ''572''\n      - *718\n    ''522'':\n    - - ''573''\n      - *719\n    ''523'':\n    - - ''574''\n      - *720\n    - - ''575''\n      - *721\n    ''524'':\n    - - ''576''\n      - *722\n    ''525'':\n    - - ''577''\n      - *723\n    ''526'':\n    - - ''578''\n      - *724\n    ''527'':\n    - - ''579''\n      - *725\n    ''528'':\n    - - ''580''\n      - *727\n    ''529'':\n    - - ''581''\n      - *728\n    ''53'':\n    - - ''57''\n      - *715\n    ''530'':\n    - - ''582''\n      - *729\n    ''531'':\n    - - ''583''\n      - *730\n    ''532'':\n    - - ''584''\n      - *731\n    ''533'':\n    - - ''585''\n      - *732\n    ''534'':\n    - - ''586''\n      - *733\n    ''535'':\n    - - ''587''\n      - *734\n    ''536'':\n    - - ''588''\n      - *735\n    ''537'':\n    - - ''589''\n      - *736\n    ''538'':\n    - - ''590''\n      - *738\n    ''539'':\n    - - ''591''\n      - *739\n    ''54'':\n    - - ''58''\n      - *726\n    ''540'':\n    - - ''592''\n      - *740\n    ''541'':\n    - - ''593''\n      - *741\n    ''542'':\n    - - ''594''\n      - *742\n    ''543'':\n    - - ''595''\n      - *743\n    ''544'':\n    - - ''596''\n      - *744\n    ''545'':\n    - - ''597''\n      - *745\n    ''546'':\n    - - ''598''\n      - *746\n    ''547'':\n    - - ''599''\n      - *747\n    ''548'':\n    - - ''600''\n      - *750\n    ''549'':\n    - - ''601''\n      - *751\n    ''55'':\n    - - ''59''\n      - *737\n    ''550'':\n    - - ''602''\n      - *752\n    ''551'':\n    - - ''603''\n      - *753\n    ''552'':\n    - - ''604''\n      - *754\n    ''553'':\n    - - ''605''\n      - *755\n    ''554'':\n    - - ''606''\n      - *756\n    ''555'':\n    - - ''607''\n      - *757\n    ''556'':\n    - - ''608''\n      - *758\n    ''557'':\n    - - ''609''\n      - *759\n    ''558'':\n    - - ''610''\n      - *761\n    ''559'':\n    - - ''611''\n      - *762\n    ''56'':\n    - - ''60''\n      - *749\n    ''560'':\n    - - ''612''\n      - *763\n    ''561'':\n    - - ''613''\n      - *764\n    ''562'':\n    - - ''614''\n      - *765\n    ''563'':\n    - - ''615''\n      - *766\n    ''564'':\n    - - ''616''\n      - *767\n    ''565'':\n    - - ''617''\n      - *768\n    ''566'':\n    - - ''618''\n      - *769\n    ''567'':\n    - - ''619''\n      - *770\n    ''568'':\n    - - ''620''\n      - *772\n    ''569'':\n    - - ''621''\n      - *773\n    - - ''622''\n      - *774\n    ''57'':\n    - - ''61''\n      - *760\n    ''570'':\n    - - ''623''\n      - *775\n    ''571'':\n    - - ''624''\n      - *776\n    ''572'':\n    - - ''626''\n      - *778\n    - - ''625''\n      - *777\n    ''573'':\n    - - ''627''\n      - *779\n    ''574'':\n    - - ''628''\n      - *780\n    ''575'':\n    - - ''629''\n      - *781\n    ''576'':\n    - - ''630''\n      - *783\n    ''577'':\n    - - ''631''\n      - *784\n    ''578'':\n    - - ''632''\n      - *785\n    ''579'':\n    - - ''633''\n      - *786\n    ''58'':\n    - - ''62''\n      - *771\n    ''580'':\n    - - ''634''\n      - *787\n    ''581'':\n    - - ''635''\n      - *788\n    ''582'':\n    - - ''636''\n      - *789\n    ''583'':\n    - - ''637''\n      - *790\n    ''584'':\n    - - ''638''\n      - *791\n    ''585'':\n    - - ''639''\n      - *792\n    ''586'':\n    - - ''640''\n      - *794\n    ''587'':\n    - - ''641''\n      - *795\n    ''588'':\n    - - ''642''\n      - *796\n    ''589'':\n    - - ''643''\n      - *797\n    ''59'':\n    - - ''63''\n      - *782\n    ''590'':\n    - - ''644''\n      - *798\n    ''591'':\n    - - ''645''\n      - *799\n    ''592'':\n    - - ''646''\n      - *800\n    ''593'':\n    - - ''647''\n      - *801\n    ''594'':\n    - - ''648''\n      - *802\n    ''595'':\n    - - ''649''\n      - *803\n    ''596'':\n    - - ''650''\n      - *805\n    ''597'':\n    - - ''651''\n      - *806\n    ''598'':\n    - - ''652''\n      - *807\n    ''599'':\n    - - ''653''\n      - *808\n    ''6'':\n    - - ''6''\n      - *748\n    ''60'':\n    - - ''64''\n      - *793\n    - - ''65''\n      - *804\n    ''600'':\n    - - ''654''\n      - *809\n    ''601'':\n    - - ''655''\n      - *810\n    ''602'':\n    - - ''656''\n      - *811\n    ''603'':\n    - - ''657''\n      - *812\n    ''604'':\n    - - ''658''\n      - *813\n    - - ''659''\n      - *814\n    ''605'':\n    - - ''660''\n      - *816\n    ''606'':\n    - - ''661''\n      - *817\n    ''607'':\n    - - ''662''\n      - *818\n    ''608'':\n    - - ''663''\n      - *819\n    ''609'':\n    - - ''664''\n      - *820\n    ''61'':\n    - - ''66''\n      - *815\n    ''610'':\n    - - ''665''\n      - *821\n    ''611'':\n    - - ''666''\n      - *822\n    ''612'':\n    - - ''667''\n      - *823\n    ''613'':\n    - - ''668''\n      - *824\n    ''614'':\n    - - ''669''\n      - *825\n    ''615'':\n    - - ''670''\n      - *827\n    ''616'':\n    - - ''671''\n      - *828\n    ''617'':\n    - - ''673''\n      - *830\n    - - ''672''\n      - *829\n    ''618'':\n    - - ''674''\n      - *831\n    ''619'':\n    - - ''675''\n      - *832\n    ''62'':\n    - - ''67''\n      - *826\n    ''620'':\n    - - ''676''\n      - *833\n    ''621'':\n    - - ''677''\n      - *834\n    ''622'':\n    - - ''678''\n      - *835\n    ''623'':\n    - - ''679''\n      - *836\n    ''624'':\n    - - ''680''\n      - *838\n    ''625'':\n    - - ''681''\n      - *839\n    ''626'':\n    - - ''682''\n      - *840\n    ''627'':\n    - - ''683''\n      - *841\n    ''628'':\n    - - ''684''\n      - *842\n    ''629'':\n    - - ''685''\n      - *843\n    ''63'':\n    - - ''68''\n      - *837\n    ''630'':\n    - - ''686''\n      - *844\n    ''631'':\n    - - ''687''\n      - *845\n    ''632'':\n    - - ''688''\n      - *846\n    ''633'':\n    - - ''689''\n      - *847\n    ''634'':\n    - - ''690''\n      - *849\n    - - ''691''\n      - *850\n    ''635'':\n    - - ''692''\n      - *851\n    ''636'':\n    - - ''693''\n      - *852\n    ''637'':\n    - - ''694''\n      - *853\n    ''638'':\n    - - ''695''\n      - *854\n    ''639'':\n    - - ''696''\n      - *855\n    - - ''697''\n      - *856\n    ''64'':\n    - - ''69''\n      - *848\n    ''640'':\n    - - ''698''\n      - *857\n    ''641'':\n    - - ''699''\n      - *858\n    ''642'':\n    - - ''700''\n      - *861\n    - - ''701''\n      - *862\n    ''643'':\n    - - ''702''\n      - *863\n    ''644'':\n    - - ''703''\n      - *864\n    ''645'':\n    - - ''704''\n      - *865\n    ''646'':\n    - - ''705''\n      - *866\n    ''647'':\n    - - ''706''\n      - *867\n    ''648'':\n    - - ''707''\n      - *868\n    ''649'':\n    - - ''708''\n      - *869\n    ''65'':\n    - - ''70''\n      - *860\n    ''650'':\n    - - ''709''\n      - *870\n    ''651'':\n    - - ''710''\n      - *872\n    ''652'':\n    - - ''711''\n      - *873\n    ''653'':\n    - - ''712''\n      - *874\n    ''654'':\n    - - ''713''\n      - *875\n    ''655'':\n    - - ''714''\n      - *876\n    ''656'':\n    - - ''715''\n      - *877\n    ''657'':\n    - - ''716''\n      - *878\n    ''658'':\n    - - ''717''\n      - *879\n    ''659'':\n    - - ''718''\n      - *880\n    ''66'':\n    - - ''71''\n      - *871\n    ''660'':\n    - - ''720''\n      - *883\n    - - ''719''\n      - *881\n    ''661'':\n    - - ''721''\n      - *884\n    ''662'':\n    - - ''722''\n      - *885\n    ''663'':\n    - - ''724''\n      - *887\n    - - ''723''\n      - *886\n    ''664'':\n    - - ''725''\n      - *888\n    ''665'':\n    - - ''726''\n      - *889\n    ''666'':\n    - - ''728''\n      - *891\n    - - ''727''\n      - *890\n    ''667'':\n    - - ''729''\n      - *892\n    ''668'':\n    - - ''730''\n      - *894\n    ''669'':\n    - - ''731''\n      - *895\n    ''67'':\n    - - ''72''\n      - *882\n    ''670'':\n    - - ''732''\n      - *896\n    ''671'':\n    - - ''733''\n      - *897\n    ''672'':\n    - - ''734''\n      - *898\n    ''673'':\n    - - ''735''\n      - *899\n    ''674'':\n    - - ''736''\n      - *900\n    ''675'':\n    - - ''737''\n      - *901\n    ''676'':\n    - - ''738''\n      - *902\n    ''677'':\n    - - ''739''\n      - *903\n    ''678'':\n    - - ''740''\n      - *905\n    ''679'':\n    - - ''741''\n      - *906\n    ''68'':\n    - - ''74''\n      - *904\n    - - ''73''\n      - *893\n    ''680'':\n    - - ''742''\n      - *907\n    ''681'':\n    - - ''743''\n      - *908\n    ''682'':\n    - - ''744''\n      - *909\n    ''683'':\n    - - ''745''\n      - *910\n    ''684'':\n    - - ''746''\n      - *911\n    ''685'':\n    - - ''747''\n      - *912\n    ''686'':\n    - - ''748''\n      - *913\n    ''687'':\n    - - ''749''\n      - *914\n    ''688'':\n    - - ''750''\n      - *916\n    ''689'':\n    - - ''751''\n      - *917\n    ''69'':\n    - - ''75''\n      - *915\n    ''690'':\n    - - ''752''\n      - *918\n    ''691'':\n    - - ''753''\n      - *919\n    ''692'':\n    - - ''754''\n      - *920\n    ''693'':\n    - - ''755''\n      - *921\n    ''694'':\n    - - ''756''\n      - *922\n    ''695'':\n    - - ''757''\n      - *923\n    ''696'':\n    - - ''758''\n      - *924\n    ''697'':\n    - - ''759''\n      - *925\n    ''698'':\n    - - ''760''\n      - *927\n    ''699'':\n    - - ''761''\n      - *928\n    ''7'':\n    - - ''8''\n      - *970\n    - - ''7''\n      - *859\n    ''70'':\n    - - ''76''\n      - *926\n    ''700'':\n    - - ''762''\n      - *929\n    ''701'':\n    - - ''763''\n      - *930\n    ''702'':\n    - - ''764''\n      - *931\n    ''703'':\n    - - ''765''\n      - *932\n    ''704'':\n    - - ''766''\n      - *933\n    ''705'':\n    - - ''767''\n      - *934\n    ''706'':\n    - - ''768''\n      - *935\n    ''707'':\n    - - ''769''\n      - *936\n    ''708'':\n    - - ''770''\n      - *938\n    ''709'':\n    - - ''771''\n      - *939\n    ''71'':\n    - - ''77''\n      - *937\n    ''710'':\n    - - ''772''\n      - *940\n    ''711'':\n    - - ''773''\n      - *941\n    ''712'':\n    - - ''774''\n      - *942\n    ''713'':\n    - - ''775''\n      - *943\n    ''714'':\n    - - ''776''\n      - *944\n    ''715'':\n    - - ''777''\n      - *945\n    ''716'':\n    - - ''778''\n      - *946\n    ''717'':\n    - - ''779''\n      - *947\n    ''718'':\n    - - ''780''\n      - *949\n    ''719'':\n    - - ''781''\n      - *950\n    ''72'':\n    - - ''78''\n      - *948\n    ''720'':\n    - - ''782''\n      - *951\n    ''721'':\n    - - ''784''\n      - *953\n    - - ''783''\n      - *952\n    ''722'':\n    - - ''785''\n      - *954\n    ''723'':\n    - - ''786''\n      - *955\n    ''724'':\n    - - ''787''\n      - *956\n    ''725'':\n    - - ''788''\n      - *957\n    ''726'':\n    - - ''789''\n      - *958\n    ''727'':\n    - - ''790''\n      - *960\n    ''728'':\n    - - ''791''\n      - *961\n    ''729'':\n    - - ''792''\n      - *962\n    ''73'':\n    - - ''79''\n      - *959\n    ''730'':\n    - - ''793''\n      - *963\n    ''731'':\n    - - ''794''\n      - *964\n    ''732'':\n    - - ''795''\n      - *965\n    ''733'':\n    - - ''796''\n      - *966\n    ''734'':\n    - - ''797''\n      - *967\n    ''735'':\n    - - ''798''\n      - *968\n    ''736'':\n    - - ''799''\n      - *969\n    ''737'':\n    - - ''800''\n      - *972\n    ''738'':\n    - - ''801''\n      - *973\n    ''739'':\n    - - ''802''\n      - *974\n    ''74'':\n    - - ''80''\n      - *971\n    ''740'':\n    - - ''803''\n      - *975\n    ''741'':\n    - - ''804''\n      - *976\n    ''742'':\n    - - ''805''\n      - *977\n    ''743'':\n    - - ''806''\n      - *978\n    ''744'':\n    - - ''807''\n      - *979\n    ''745'':\n    - - ''808''\n      - *980\n    ''746'':\n    - - ''809''\n      - *981\n    ''747'':\n    - - ''810''\n      - *983\n    ''748'':\n    - - ''811''\n      - *984\n    ''749'':\n    - - ''812''\n      - *985\n    ''75'':\n    - - ''81''\n      - *982\n    ''750'':\n    - - ''813''\n      - *986\n    ''751'':\n    - - ''814''\n      - *987\n    ''752'':\n    - - ''815''\n      - *988\n    ''753'':\n    - - ''816''\n      - *989\n    ''754'':\n    - - ''817''\n      - *990\n    ''755'':\n    - - ''818''\n      - *991\n    ''756'':\n    - - ''819''\n      - *992\n    ''757'':\n    - - ''820''\n      - *994\n    ''758'':\n    - - ''821''\n      - *995\n    ''759'':\n    - - ''822''\n      - *996\n    ''76'':\n    - - ''82''\n      - *993\n    ''760'':\n    - - ''823''\n      - *997\n    ''761'':\n    - - ''824''\n      - *998\n    ''762'':\n    - - ''825''\n      - *999\n    - - ''826''\n      - *1000\n    ''763'':\n    - - ''827''\n      - *1001\n    ''764'':\n    - - ''828''\n      - *1002\n    ''765'':\n    - - ''829''\n      - *1003\n    ''766'':\n    - - ''830''\n      - *1005\n    ''767'':\n    - - ''831''\n      - *1006\n    ''768'':\n    - - ''832''\n      - *1007\n    ''769'':\n    - - ''833''\n      - *1008\n    ''77'':\n    - - ''83''\n      - *1004\n    ''770'':\n    - - ''834''\n      - *1009\n    ''771'':\n    - - ''835''\n      - *1010\n    ''772'':\n    - - ''836''\n      - *1011\n    ''773'':\n    - - ''837''\n      - *1012\n    ''774'':\n    - - ''838''\n      - *1013\n    ''775'':\n    - - ''839''\n      - *1014\n    ''776'':\n    - - ''840''\n      - *1016\n    ''777'':\n    - - ''841''\n      - *1017\n    ''778'':\n    - - ''842''\n      - *1018\n    ''779'':\n    - - ''843''\n      - *1019\n    ''78'':\n    - - ''84''\n      - *1015\n    ''780'':\n    - - ''844''\n      - *1020\n    ''781'':\n    - - ''845''\n      - *1021\n    - - ''846''\n      - *1022\n    ''782'':\n    - - ''847''\n      - *1023\n    ''783'':\n    - - ''848''\n      - *1024\n    ''784'':\n    - - ''849''\n      - *1025\n    ''785'':\n    - - ''850''\n      - *1027\n    ''786'':\n    - - ''851''\n      - *1028\n    ''787'':\n    - - ''852''\n      - *1029\n    ''788'':\n    - - ''854''\n      - *1031\n    - - ''853''\n      - *1030\n    - - ''855''\n      - *1032\n    ''789'':\n    - - ''856''\n      - *1033\n    ''79'':\n    - - ''85''\n      - *1026\n    ''790'':\n    - - ''857''\n      - *1034\n    ''791'':\n    - - ''858''\n      - *1035\n    ''792'':\n    - - ''859''\n      - *1036\n    ''793'':\n    - - ''860''\n      - *1038\n    ''794'':\n    - - ''861''\n      - *1039\n    ''795'':\n    - - ''862''\n      - *1040\n    ''796'':\n    - - ''863''\n      - *1041\n    ''797'':\n    - - ''865''\n      - *1043\n    - - ''864''\n      - *1042\n    ''798'':\n    - - ''866''\n      - *1044\n    ''799'':\n    - - ''867''\n      - *1045\n    ''8'':\n    - - ''9''\n      - *1081\n    ''80'':\n    - - ''86''\n      - *1037\n    ''800'':\n    - - ''868''\n      - *1046\n    ''801'':\n    - - ''869''\n      - *1047\n    ''802'':\n    - - ''870''\n      - *1049\n    ''803'':\n    - - ''871''\n      - *1050\n    ''804'':\n    - - ''872''\n      - *1051\n    - - ''873''\n      - *1052\n    ''805'':\n    - - ''874''\n      - *1053\n    ''806'':\n    - - ''875''\n      - *1054\n    ''807'':\n    - - ''876''\n      - *1055\n    ''808'':\n    - - ''877''\n      - *1056\n    ''809'':\n    - - ''878''\n      - *1057\n    ''81'':\n    - - ''87''\n      - *1048\n    ''810'':\n    - - ''879''\n      - *1058\n    ''811'':\n    - - ''881''\n      - *1061\n    - - ''880''\n      - *1060\n    ''812'':\n    - - ''882''\n      - *1062\n    ''813'':\n    - - ''883''\n      - *1063\n    ''814'':\n    - - ''884''\n      - *1064\n    ''815'':\n    - - ''885''\n      - *1065\n    ''816'':\n    - - ''886''\n      - *1066\n    ''817'':\n    - - ''887''\n      - *1067\n    ''818'':\n    - - ''888''\n      - *1068\n    ''819'':\n    - - ''889''\n      - *1069\n    ''82'':\n    - - ''88''\n      - *1059\n    ''820'':\n    - - ''890''\n      - *1071\n    ''821'':\n    - - ''891''\n      - *1072\n    ''822'':\n    - - ''892''\n      - *1073\n    ''823'':\n    - - ''893''\n      - *1074\n    ''824'':\n    - - ''894''\n      - *1075\n    ''825'':\n    - - ''895''\n      - *1076\n    ''826'':\n    - - ''896''\n      - *1077\n    ''827'':\n    - - ''897''\n      - *1078\n    ''828'':\n    - - ''898''\n      - *1079\n    - - ''899''\n      - *1080\n    - - ''900''\n      - *1083\n    ''829'':\n    - - ''901''\n      - *1084\n    ''83'':\n    - - ''89''\n      - *1070\n    - - ''91''\n      - *1093\n    - - ''90''\n      - *1082\n    ''830'':\n    - - ''902''\n      - *1085\n    ''831'':\n    - - ''903''\n      - *1086\n    ''832'':\n    - - ''904''\n      - *1087\n    ''833'':\n    - - ''906''\n      - *1089\n    - - ''905''\n      - *1088\n    ''834'':\n    - - ''907''\n      - *1090\n    ''835'':\n    - - ''908''\n      - *1091\n    ''836'':\n    - - ''909''\n      - *1092\n    ''837'':\n    - - ''910''\n      - *1094\n    ''838'':\n    - - ''911''\n      - *1095\n    ''839'':\n    - - ''912''\n      - *1096\n    ''84'':\n    - - ''92''\n      - *1104\n    ''840'':\n    - - ''913''\n      - *1097\n    ''841'':\n    - - ''914''\n      - *1098\n    ''842'':\n    - - ''915''\n      - *1099\n    ''843'':\n    - - ''916''\n      - *1100\n    ''844'':\n    - - ''917''\n      - *1101\n    ''845'':\n    - - ''918''\n      - *1102\n    ''846'':\n    - - ''919''\n      - *1103\n    ''847'':\n    - - ''920''\n      - *1105\n    ''848'':\n    - - ''921''\n      - *1106\n    ''849'':\n    - - ''922''\n      - *1107\n    ''85'':\n    - - ''93''\n      - *1115\n    ''850'':\n    - - ''923''\n      - *1108\n    ''851'':\n    - - ''924''\n      - *1109\n    ''852'':\n    - - ''925''\n      - *1110\n    ''853'':\n    - - ''926''\n      - *1111\n    ''854'':\n    - - ''927''\n      - *1112\n    ''855'':\n    - - ''928''\n      - *1113\n    ''856'':\n    - - ''929''\n      - *1114\n    ''857'':\n    - - ''930''\n      - *1116\n    ''858'':\n    - - ''931''\n      - *1117\n    ''859'':\n    - - ''932''\n      - *1118\n    ''86'':\n    - - ''94''\n      - *1126\n    ''860'':\n    - - ''934''\n      - *1120\n    - - ''933''\n      - *1119\n    ''861'':\n    - - ''936''\n      - *1122\n    - - ''935''\n      - *1121\n    ''862'':\n    - - ''937''\n      - *1123\n    ''863'':\n    - - ''938''\n      - *1124\n    ''864'':\n    - - ''939''\n      - *1125\n    ''865'':\n    - - ''940''\n      - *1127\n    ''866'':\n    - - ''941''\n      - *1128\n    ''867'':\n    - - ''942''\n      - *1129\n    ''868'':\n    - - ''943''\n      - *1130\n    ''869'':\n    - - ''944''\n      - *1131\n    ''87'':\n    - - ''95''\n      - *1137\n    ''870'':\n    - - ''945''\n      - *1132\n    ''871'':\n    - - ''946''\n      - *1133\n    ''872'':\n    - - ''947''\n      - *1134\n    ''873'':\n    - - ''948''\n      - *1135\n    ''874'':\n    - - ''949''\n      - *1136\n    ''875'':\n    - - ''951''\n      - *1139\n    - - ''950''\n      - *1138\n    ''876'':\n    - - ''952''\n      - *1140\n    ''877'':\n    - - ''953''\n      - *1141\n    ''878'':\n    - - ''954''\n      - *1142\n    ''879'':\n    - - ''955''\n      - *1143\n    ''88'':\n    - - ''96''\n      - *1148\n    ''880'':\n    - - ''956''\n      - *1144\n    ''881'':\n    - - ''957''\n      - *1145\n    ''882'':\n    - - ''958''\n      - *1146\n    ''883'':\n    - - ''959''\n      - *1147\n    ''884'':\n    - - ''960''\n      - *1149\n    ''885'':\n    - - ''961''\n      - *1150\n    ''886'':\n    - - ''962''\n      - *1151\n    ''887'':\n    - - ''963''\n      - *1152\n    ''888'':\n    - - ''964''\n      - *1153\n    ''889'':\n    - - ''965''\n      - *1154\n    ''89'':\n    - - ''97''\n      - *1159\n    ''890'':\n    - - ''966''\n      - *1155\n    ''891'':\n    - - ''967''\n      - *1156\n    ''892'':\n    - - ''968''\n      - *1157\n    ''893'':\n    - - ''969''\n      - *1158\n    ''894'':\n    - - ''970''\n      - *1160\n    ''895'':\n    - - ''971''\n      - *1161\n    ''896'':\n    - - ''972''\n      - *1162\n    ''897'':\n    - - ''973''\n      - *1163\n    ''898'':\n    - - ''974''\n      - *1164\n    ''899'':\n    - - ''975''\n      - *1165\n    ''9'':\n    - - ''10''\n      - *4\n    ''90'':\n    - - ''98''\n      - *1170\n    ''900'':\n    - - ''977''\n      - *1167\n    - - ''976''\n      - *1166\n    ''901'':\n    - - ''978''\n      - *1168\n    ''902'':\n    - - ''979''\n      - *1169\n    ''903'':\n    - - ''980''\n      - *1171\n    ''904'':\n    - - ''981''\n      - *1172\n    ''905'':\n    - - ''982''\n      - *1173\n    ''906'':\n    - - ''983''\n      - *1174\n    ''907'':\n    - - ''984''\n      - *1175\n    ''908'':\n    - - ''985''\n      - *1176\n    ''909'':\n    - - ''986''\n      - *1177\n    ''91'':\n    - - ''99''\n      - *1181\n    ''910'':\n    - - ''987''\n      - *1178\n    ''911'':\n    - - ''988''\n      - *1179\n    ''912'':\n    - - ''989''\n      - *1180\n    ''913'':\n    - - ''990''\n      - *1182\n    ''914'':\n    - - ''991''\n      - *1183\n    ''915'':\n    - - ''992''\n      - *1184\n    ''916'':\n    - - ''993''\n      - *1185\n    ''917'':\n    - - ''994''\n      - *1186\n    ''918'':\n    - - ''995''\n      - *1187\n    ''919'':\n    - - ''996''\n      - *1188\n    ''92'':\n    - - ''100''\n      - *5\n    ''920'':\n    - - ''997''\n      - *1189\n    - - ''998''\n      - *1190\n    ''921'':\n    - - ''999''\n      - *1191\n    ''922'':\n    - - ''1000''\n      - *6\n    ''923'':\n    - - ''1001''\n      - *7\n    ''924'':\n    - - ''1002''\n      - *8\n    ''925'':\n    - - ''1003''\n      - *9\n    ''926'':\n    - - ''1004''\n      - *10\n    ''927'':\n    - - ''1005''\n      - *11\n    ''928'':\n    - - ''1006''\n      - *12\n    ''929'':\n    - - ''1007''\n      - *13\n    ''93'':\n    - - ''101''\n      - *16\n    ''930'':\n    - - ''1008''\n      - *14\n    ''931'':\n    - - ''1009''\n      - *15\n    ''932'':\n    - - ''1010''\n      - *17\n    ''933'':\n    - - ''1011''\n      - *18\n    ''934'':\n    - - ''1012''\n      - *19\n    ''935'':\n    - - ''1013''\n      - *20\n    ''936'':\n    - - ''1014''\n      - *21\n    ''937'':\n    - - ''1015''\n      - *22\n    ''938'':\n    - - ''1016''\n      - *23\n    ''939'':\n    - - ''1017''\n      - *24\n    ''94'':\n    - - ''102''\n      - *27\n    ''940'':\n    - - ''1018''\n      - *25\n    ''941'':\n    - - ''1019''\n      - *26\n    ''942'':\n    - - ''1020''\n      - *28\n    ''943'':\n    - - ''1021''\n      - *29\n    ''944'':\n    - - ''1022''\n      - *30\n    ''945'':\n    - - ''1023''\n      - *31\n    ''946'':\n    - - ''1024''\n      - *32\n    ''947'':\n    - - ''1025''\n      - *33\n    ''948'':\n    - - ''1026''\n      - *34\n    ''949'':\n    - - ''1027''\n      - *35\n    ''95'':\n    - - ''103''\n      - *38\n    ''950'':\n    - - ''1028''\n      - *36\n    ''951'':\n    - - ''1029''\n      - *37\n    ''952'':\n    - - ''1030''\n      - *39\n    ''953'':\n    - - ''1031''\n      - *40\n    ''954'':\n    - - ''1032''\n      - *41\n    ''955'':\n    - - ''1033''\n      - *42\n    ''956'':\n    - - ''1034''\n      - *43\n    ''957'':\n    - - ''1035''\n      - *44\n    ''958'':\n    - - ''1036''\n      - *45\n    ''959'':\n    - - ''1037''\n      - *46\n    ''96'':\n    - - ''104''\n      - *49\n    ''960'':\n    - - ''1038''\n      - *47\n    ''961'':\n    - - ''1039''\n      - *48\n    ''962'':\n    - - ''1040''\n      - *50\n    ''963'':\n    - - ''1041''\n      - *51\n    ''964'':\n    - - ''1042''\n      - *52\n    ''965'':\n    - - ''1044''\n      - *54\n    - - ''1043''\n      - *53\n    ''966'':\n    - - ''1045''\n      - *55\n    ''967'':\n    - - ''1046''\n      - *56\n    - - ''1047''\n      - *57\n    ''968'':\n    - - ''1048''\n      - *58\n    ''969'':\n    - - ''1049''\n      - *59\n    ''97'':\n    - - ''105''\n      - *60\n    ''970'':\n    - - ''1050''\n      - *61\n    ''971'':\n    - - ''1051''\n      - *62\n    ''972'':\n    - - ''1054''\n      - *65\n    - - ''1052''\n      - *63\n    - - ''1053''\n      - *64\n    ''973'':\n    - - ''1055''\n      - *66\n    ''974'':\n    - - ''1056''\n      - *67\n    ''975'':\n    - - ''1057''\n      - *68\n    ''976'':\n    - - ''1058''\n      - *69\n    ''977'':\n    - - ''1059''\n      - *70\n    ''978'':\n    - - ''1060''\n      - *72\n    ''979'':\n    - - ''1061''\n      - *73\n    ''98'':\n    - - ''106''\n      - *71\n    ''980'':\n    - - ''1062''\n      - *74\n    ''981'':\n    - - ''1063''\n      - *75\n    ''982'':\n    - - ''1064''\n      - *76\n    ''983'':\n    - - ''1065''\n      - *77\n    ''984'':\n    - - ''1066''\n      - *78\n    ''985'':\n    - - ''1067''\n      - *79\n    ''986'':\n    - - ''1068''\n      - *80\n    ''987'':\n    - - ''1069''\n      - *81\n    ''988'':\n    - - ''1070''\n      - *83\n    ''989'':\n    - - ''1071''\n      - *84\n    ''99'':\n    - - ''107''\n      - *82\n    ''990'':\n    - - ''1072''\n      - *85\n    - - ''1073''\n      - *86\n    ''991'':\n    - - ''1074''\n      - *87\n    ''992'':\n    - - ''1075''\n      - *88\n    ''993'':\n    - - ''1076''\n      - *89\n    ''994'':\n    - - ''1077''\n      - *90\n    ''995'':\n    - - ''1078''\n      - *91\n    ''996'':\n    - - ''1079''\n      - *92\n    ''997'':\n    - - ''1081''\n      - *95\n    - - ''1080''\n      - *94\n    - - ''1082''\n      - *96\n    ''998'':\n    - - ''1083''\n      - *97\n    ''999'':\n    - - ''1084''\n      - *98\n- - 2286\n  - ''1'':\n    - - ''660''\n      - *816\n    - - ''23''\n      - *338\n    - - ''24''\n      - *349\n    ''10'':\n    - - ''10''\n      - *4\n    ''100'':\n    - - ''107''\n      - *82\n    ''1000'':\n    - - ''1084''\n      - *98\n    ''1001'':\n    - - ''1085''\n      - *99\n    ''1002'':\n    - - ''1086''\n      - *100\n    ''1003'':\n    - - ''1087''\n      - *101\n    ''1004'':\n    - - ''1088''\n      - *102\n    ''1005'':\n    - - ''1089''\n      - *103\n    - - ''1090''\n      - *105\n    ''1006'':\n    - - ''1092''\n      - *107\n    ''1007'':\n    - - ''1091''\n      - *106\n    ''1008'':\n    - - ''1094''\n      - *109\n    - - ''1093''\n      - *108\n    ''1009'':\n    - - ''1095''\n      - *110\n    ''101'':\n    - - ''108''\n      - *93\n    ''1010'':\n    - - ''1080''\n      - *94\n    ''1011'':\n    - - ''1082''\n      - *96\n    ''1012'':\n    - - ''1081''\n      - *95\n    ''1013'':\n    - - ''1096''\n      - *111\n    ''1014'':\n    - - ''1101''\n      - *118\n    ''1015'':\n    - - ''1102''\n      - *119\n    ''1016'':\n    - - ''1103''\n      - *120\n    ''1017'':\n    - - ''1104''\n      - *121\n    ''1018'':\n    - - ''1105''\n      - *122\n    ''1019'':\n    - - ''1106''\n      - *123\n    ''102'':\n    - - ''99''\n      - *1181\n    ''1020'':\n    - - ''1107''\n      - *124\n    ''1021'':\n    - - ''1108''\n      - *125\n    ''1022'':\n    - - ''1109''\n      - *126\n    ''1023'':\n    - - ''1097''\n      - *112\n    - - ''1100''\n      - *117\n    ''1024'':\n    - - ''1110''\n      - *128\n    ''1025'':\n    - - ''1112''\n      - *130\n    ''1026'':\n    - - ''1113''\n      - *131\n    ''1027'':\n    - - ''1114''\n      - *132\n    ''1028'':\n    - - ''1115''\n      - *133\n    ''1029'':\n    - - ''1116''\n      - *134\n    ''103'':\n    - - ''109''\n      - *104\n    ''1030'':\n    - - ''1117''\n      - *135\n    ''1031'':\n    - - ''1118''\n      - *136\n    ''1032'':\n    - - ''1119''\n      - *137\n    ''1033'':\n    - - ''1120''\n      - *139\n    ''1034'':\n    - - ''1098''\n      - *113\n    - - ''1111''\n      - *129\n    - - ''1099''\n      - *114\n    ''1035'':\n    - - ''1121''\n      - *140\n    ''1036'':\n    - - ''1123''\n      - *142\n    ''1037'':\n    - - ''1125''\n      - *144\n    ''1038'':\n    - - ''1126''\n      - *145\n    - - ''1124''\n      - *143\n    ''1039'':\n    - - ''1127''\n      - *146\n    ''104'':\n    - - ''110''\n      - *116\n    ''1040'':\n    - - ''1128''\n      - *147\n    ''1041'':\n    - - ''1130''\n      - *150\n    - - ''1129''\n      - *148\n    ''1042'':\n    - - ''1131''\n      - *151\n    ''1043'':\n    - - ''1132''\n      - *152\n    ''1044'':\n    - - ''1133''\n      - *153\n    ''1045'':\n    - - ''1134''\n      - *154\n    ''1046'':\n    - - ''1122''\n      - *141\n    ''1047'':\n    - - ''1135''\n      - *155\n    ''1048'':\n    - - ''1137''\n      - *157\n    ''1049'':\n    - - ''1138''\n      - *158\n    ''105'':\n    - - ''112''\n      - *138\n    - - ''113''\n      - *149\n    ''1050'':\n    - - ''1139''\n      - *159\n    ''1051'':\n    - - ''1140''\n      - *161\n    ''1052'':\n    - - ''1141''\n      - *162\n    ''1053'':\n    - - ''1142''\n      - *163\n    ''1054'':\n    - - ''1143''\n      - *164\n    ''1055'':\n    - - ''1144''\n      - *165\n    ''1056'':\n    - - ''1145''\n      - *166\n    ''1057'':\n    - - ''1147''\n      - *168\n    ''1058'':\n    - - ''1146''\n      - *167\n    ''1059'':\n    - - ''1136''\n      - *156\n    ''106'':\n    - - ''114''\n      - *160\n    ''1060'':\n    - - ''1149''\n      - *170\n    - - ''1150''\n      - *172\n    - - ''1148''\n      - *169\n    ''1061'':\n    - - ''1152''\n      - *174\n    ''1062'':\n    - - ''1153''\n      - *175\n    ''1063'':\n    - - ''1155''\n      - *177\n    ''1064'':\n    - - ''1154''\n      - *176\n    ''1065'':\n    - - ''1157''\n      - *179\n    ''1066'':\n    - - ''1156''\n      - *178\n    - - ''1158''\n      - *180\n    ''1067'':\n    - - ''1159''\n      - *181\n    - - ''1160''\n      - *183\n    ''1068'':\n    - - ''1161''\n      - *184\n    ''1069'':\n    - - ''1162''\n      - *185\n    ''107'':\n    - - ''115''\n      - *171\n    ''1070'':\n    - - ''1163''\n      - *186\n    ''1071'':\n    - - ''1164''\n      - *187\n    ''1072'':\n    - - ''1151''\n      - *173\n    ''1073'':\n    - - ''1165''\n      - *188\n    ''1074'':\n    - - ''1168''\n      - *191\n    ''1075'':\n    - - ''1169''\n      - *192\n    ''1076'':\n    - - ''1170''\n      - *194\n    ''1077'':\n    - - ''1171''\n      - *195\n    ''1078'':\n    - - ''1172''\n      - *196\n    ''1079'':\n    - - ''1173''\n      - *197\n    ''108'':\n    - - ''116''\n      - *182\n    ''1080'':\n    - - ''1174''\n      - *198\n    ''1081'':\n    - - ''1175''\n      - *199\n    ''1082'':\n    - - ''1176''\n      - *200\n    ''1083'':\n    - - ''1167''\n      - *190\n    ''1084'':\n    - - ''1166''\n      - *189\n    ''1085'':\n    - - ''1177''\n      - *201\n    ''1086'':\n    - - ''1180''\n      - *205\n    ''1087'':\n    - - ''1181''\n      - *206\n    ''1088'':\n    - - ''1182''\n      - *207\n    ''1089'':\n    - - ''1183''\n      - *208\n    ''109'':\n    - - ''117''\n      - *193\n    ''1090'':\n    - - ''1184''\n      - *209\n    ''1091'':\n    - - ''1185''\n      - *210\n    ''1092'':\n    - - ''1186''\n      - *211\n    ''1093'':\n    - - ''1187''\n      - *212\n    ''1094'':\n    - - ''1188''\n      - *213\n    ''11'':\n    - - ''9''\n      - *1081\n    ''110'':\n    - - ''118''\n      - *204\n    ''111'':\n    - - ''119''\n      - *215\n    ''112'':\n    - - ''120''\n      - *217\n    ''113'':\n    - - ''121''\n      - *218\n    ''114'':\n    - - ''111''\n      - *127\n    ''115'':\n    - - ''122''\n      - *219\n    ''116'':\n    - - ''124''\n      - *221\n    ''117'':\n    - - ''126''\n      - *223\n    ''118'':\n    - - ''125''\n      - *222\n    ''119'':\n    - - ''127''\n      - *224\n    - - ''128''\n      - *225\n    ''12'':\n    - - ''12''\n      - *216\n    - - ''11''\n      - *115\n    ''120'':\n    - - ''129''\n      - *226\n    ''121'':\n    - - ''130''\n      - *228\n    ''122'':\n    - - ''131''\n      - *229\n    ''123'':\n    - - ''132''\n      - *230\n    ''124'':\n    - - ''133''\n      - *231\n    ''125'':\n    - - ''134''\n      - *232\n    ''126'':\n    - - ''123''\n      - *220\n    ''127'':\n    - - ''135''\n      - *233\n    ''128'':\n    - - ''137''\n      - *235\n    ''129'':\n    - - ''138''\n      - *236\n    ''13'':\n    - - ''13''\n      - *227\n    ''130'':\n    - - ''139''\n      - *237\n    ''131'':\n    - - ''140''\n      - *239\n    ''132'':\n    - - ''141''\n      - *240\n    ''133'':\n    - - ''142''\n      - *241\n    ''134'':\n    - - ''143''\n      - *242\n    ''135'':\n    - - ''144''\n      - *243\n    ''136'':\n    - - ''145''\n      - *244\n    ''137'':\n    - - ''1''\n      - *3\n    ''138'':\n    - - ''2''\n      - *304\n    ''139'':\n    - - ''136''\n      - *234\n    ''14'':\n    - - ''14''\n      - *238\n    ''140'':\n    - - ''146''\n      - *245\n    ''141'':\n    - - ''151''\n      - *251\n    ''142'':\n    - - ''152''\n      - *252\n    ''143'':\n    - - ''153''\n      - *253\n    ''144'':\n    - - ''154''\n      - *254\n    ''145'':\n    - - ''158''\n      - *258\n    ''146'':\n    - - ''159''\n      - *259\n    ''147'':\n    - - ''157''\n      - *257\n    ''148'':\n    - - ''156''\n      - *256\n    ''149'':\n    - - ''155''\n      - *255\n    ''15'':\n    - - ''15''\n      - *249\n    ''150'':\n    - - ''160''\n      - *261\n    - - ''163''\n      - *264\n    - - ''161''\n      - *262\n    - - ''162''\n      - *263\n    - - ''164''\n      - *265\n    ''151'':\n    - - ''165''\n      - *266\n    ''152'':\n    - - ''166''\n      - *267\n    ''153'':\n    - - ''167''\n      - *268\n    ''154'':\n    - - ''150''\n      - *250\n    ''155'':\n    - - ''168''\n      - *269\n    ''156'':\n    - - ''170''\n      - *272\n    ''157'':\n    - - ''171''\n      - *273\n    ''158'':\n    - - ''172''\n      - *274\n    ''159'':\n    - - ''173''\n      - *275\n    ''16'':\n    - - ''16''\n      - *260\n    ''160'':\n    - - ''174''\n      - *276\n    ''161'':\n    - - ''175''\n      - *277\n    ''162'':\n    - - ''176''\n      - *278\n    ''163'':\n    - - ''177''\n      - *279\n    ''164'':\n    - - ''179''\n      - *281\n    ''165'':\n    - - ''178''\n      - *280\n    ''166'':\n    - - ''169''\n      - *270\n    ''167'':\n    - - ''180''\n      - *283\n    - - ''181''\n      - *284\n    ''168'':\n    - - ''183''\n      - *286\n    ''169'':\n    - - ''184''\n      - *287\n    ''17'':\n    - - ''4''\n      - *526\n    ''170'':\n    - - ''185''\n      - *288\n    ''171'':\n    - - ''186''\n      - *289\n    ''172'':\n    - - ''187''\n      - *290\n    ''173'':\n    - - ''188''\n      - *291\n    ''174'':\n    - - ''189''\n      - *292\n    ''175'':\n    - - ''190''\n      - *294\n    ''176'':\n    - - ''191''\n      - *295\n    ''177'':\n    - - ''182''\n      - *285\n    ''178'':\n    - - ''192''\n      - *296\n    ''179'':\n    - - ''194''\n      - *298\n    ''18'':\n    - - ''17''\n      - *271\n    ''180'':\n    - - ''195''\n      - *299\n    ''181'':\n    - - ''196''\n      - *300\n    ''182'':\n    - - ''197''\n      - *301\n    ''183'':\n    - - ''198''\n      - *302\n    ''184'':\n    - - ''199''\n      - *303\n    ''185'':\n    - - ''200''\n      - *306\n    ''186'':\n    - - ''201''\n      - *307\n    ''187'':\n    - - ''203''\n      - *309\n    ''188'':\n    - - ''202''\n      - *308\n    ''189'':\n    - - ''193''\n      - *297\n    ''19'':\n    - - ''19''\n      - *293\n    ''190'':\n    - - ''205''\n      - *311\n    - - ''204''\n      - *310\n    ''191'':\n    - - ''207''\n      - *313\n    ''192'':\n    - - ''208''\n      - *314\n    ''193'':\n    - - ''209''\n      - *315\n    ''194'':\n    - - ''211''\n      - *318\n    ''195'':\n    - - ''210''\n      - *317\n    ''196'':\n    - - ''214''\n      - *321\n    ''197'':\n    - - ''212''\n      - *319\n    - - ''213''\n      - *320\n    ''198'':\n    - - ''215''\n      - *322\n    - - ''216''\n      - *323\n    ''199'':\n    - - ''217''\n      - *324\n    ''2'':\n    - - ''0''\n      - *2\n    ''20'':\n    - - ''20''\n      - *305\n    ''200'':\n    - - ''218''\n      - *325\n    ''201'':\n    - - ''219''\n      - *326\n    ''202'':\n    - - ''206''\n      - *312\n    ''203'':\n    - - ''220''\n      - *328\n    ''204'':\n    - - ''222''\n      - *330\n    ''205'':\n    - - ''223''\n      - *331\n    ''206'':\n    - - ''225''\n      - *333\n    ''207'':\n    - - ''226''\n      - *334\n    - - ''224''\n      - *332\n    ''208'':\n    - - ''227''\n      - *335\n    ''209'':\n    - - ''228''\n      - *336\n    ''21'':\n    - - ''22''\n      - *327\n    ''210'':\n    - - ''229''\n      - *337\n    ''211'':\n    - - ''230''\n      - *339\n    ''212'':\n    - - ''231''\n      - *340\n    ''213'':\n    - - ''232''\n      - *341\n    ''214'':\n    - - ''221''\n      - *329\n    ''215'':\n    - - ''233''\n      - *342\n    ''216'':\n    - - ''235''\n      - *344\n    ''217'':\n    - - ''236''\n      - *345\n    ''218'':\n    - - ''237''\n      - *346\n    ''219'':\n    - - ''238''\n      - *347\n    ''22'':\n    - - ''21''\n      - *316\n    ''220'':\n    - - ''239''\n      - *348\n    ''221'':\n    - - ''240''\n      - *350\n    ''222'':\n    - - ''241''\n      - *351\n    ''223'':\n    - - ''242''\n      - *352\n    ''224'':\n    - - ''243''\n      - *353\n    ''225'':\n    - - ''234''\n      - *343\n    ''226'':\n    - - ''244''\n      - *354\n    ''227'':\n    - - ''247''\n      - *357\n    ''228'':\n    - - ''248''\n      - *358\n    ''229'':\n    - - ''249''\n      - *359\n    ''23'':\n    - - ''18''\n      - *282\n    ''230'':\n    - - ''250''\n      - *361\n    ''231'':\n    - - ''251''\n      - *362\n    ''232'':\n    - - ''252''\n      - *363\n    ''233'':\n    - - ''253''\n      - *364\n    ''234'':\n    - - ''254''\n      - *365\n    ''235'':\n    - - ''255''\n      - *366\n    ''236'':\n    - - ''245''\n      - *355\n    ''237'':\n    - - ''256''\n      - *367\n    ''238'':\n    - - ''258''\n      - *369\n    ''239'':\n    - - ''259''\n      - *370\n    ''24'':\n    - - ''25''\n      - *360\n    ''240'':\n    - - ''260''\n      - *372\n    ''241'':\n    - - ''261''\n      - *373\n    ''242'':\n    - - ''262''\n      - *374\n    ''243'':\n    - - ''263''\n      - *375\n    ''244'':\n    - - ''264''\n      - *376\n    ''245'':\n    - - ''265''\n      - *377\n    ''246'':\n    - - ''266''\n      - *378\n    ''247'':\n    - - ''246''\n      - *356\n    - - ''257''\n      - *368\n    ''248'':\n    - - ''267''\n      - *379\n    ''249'':\n    - - ''269''\n      - *381\n    ''25'':\n    - - ''26''\n      - *371\n    ''250'':\n    - - ''270''\n      - *383\n    ''251'':\n    - - ''272''\n      - *385\n    ''252'':\n    - - ''271''\n      - *384\n    ''253'':\n    - - ''274''\n      - *387\n    - - ''273''\n      - *386\n    ''254'':\n    - - ''275''\n      - *388\n    ''255'':\n    - - ''276''\n      - *389\n    ''256'':\n    - - ''278''\n      - *391\n    - - ''277''\n      - *390\n    ''257'':\n    - - ''279''\n      - *392\n    ''258'':\n    - - ''280''\n      - *394\n    ''259'':\n    - - ''281''\n      - *395\n    ''26'':\n    - - ''27''\n      - *382\n    ''260'':\n    - - ''149''\n      - *248\n    - - ''148''\n      - *247\n    ''261'':\n    - - ''268''\n      - *380\n    ''262'':\n    - - ''282''\n      - *396\n    ''263'':\n    - - ''285''\n      - *399\n    ''264'':\n    - - ''286''\n      - *400\n    ''265'':\n    - - ''287''\n      - *401\n    ''266'':\n    - - ''288''\n      - *402\n    ''267'':\n    - - ''289''\n      - *403\n    ''268'':\n    - - ''290''\n      - *405\n    ''269'':\n    - - ''291''\n      - *406\n    ''27'':\n    - - ''28''\n      - *393\n    ''270'':\n    - - ''292''\n      - *407\n    ''271'':\n    - - ''293''\n      - *408\n    ''272'':\n    - - ''294''\n      - *409\n    ''273'':\n    - - ''284''\n      - *398\n    ''274'':\n    - - ''297''\n      - *412\n    ''275'':\n    - - ''295''\n      - *410\n    - - ''296''\n      - *411\n    ''276'':\n    - - ''299''\n      - *414\n    - - ''300''\n      - *417\n    ''277'':\n    - - ''301''\n      - *418\n    ''278'':\n    - - ''302''\n      - *419\n    ''279'':\n    - - ''304''\n      - *421\n    ''28'':\n    - - ''29''\n      - *404\n    ''280'':\n    - - ''305''\n      - *422\n    ''281'':\n    - - ''303''\n      - *420\n    - - ''306''\n      - *423\n    ''282'':\n    - - ''307''\n      - *424\n    ''283'':\n    - - ''308''\n      - *425\n    ''284'':\n    - - ''310''\n      - *428\n    ''285'':\n    - - ''311''\n      - *429\n    - - ''309''\n      - *426\n    ''286'':\n    - - ''314''\n      - *432\n    ''287'':\n    - - ''313''\n      - *431\n    - - ''312''\n      - *430\n    ''288'':\n    - - ''298''\n      - *413\n    ''289'':\n    - - ''315''\n      - *433\n    - - ''316''\n      - *434\n    ''29'':\n    - - ''30''\n      - *416\n    ''290'':\n    - - ''318''\n      - *436\n    ''291'':\n    - - ''319''\n      - *437\n    ''292'':\n    - - ''320''\n      - *439\n    ''293'':\n    - - ''322''\n      - *441\n    ''294'':\n    - - ''321''\n      - *440\n    ''295'':\n    - - ''323''\n      - *442\n    - - ''324''\n      - *443\n    ''296'':\n    - - ''325''\n      - *444\n    ''297'':\n    - - ''326''\n      - *445\n    ''298'':\n    - - ''328''\n      - *447\n    ''299'':\n    - - ''327''\n      - *446\n    ''3'':\n    - - ''1051''\n      - *62\n    ''30'':\n    - - ''31''\n      - *427\n    ''300'':\n    - - ''330''\n      - *450\n    - - ''329''\n      - *448\n    ''301'':\n    - - ''317''\n      - *435\n    ''302'':\n    - - ''331''\n      - *451\n    ''303'':\n    - - ''333''\n      - *453\n    ''304'':\n    - - ''334''\n      - *454\n    ''305'':\n    - - ''335''\n      - *455\n    ''306'':\n    - - ''337''\n      - *457\n    ''307'':\n    - - ''336''\n      - *456\n    - - ''339''\n      - *459\n    ''308'':\n    - - ''338''\n      - *458\n    ''309'':\n    - - ''340''\n      - *461\n    - - ''341''\n      - *462\n    ''31'':\n    - - ''3''\n      - *415\n    ''310'':\n    - - ''342''\n      - *463\n    ''311'':\n    - - ''343''\n      - *464\n    ''312'':\n    - - ''344''\n      - *465\n    ''313'':\n    - - ''332''\n      - *452\n    ''314'':\n    - - ''345''\n      - *466\n    ''315'':\n    - - ''347''\n      - *468\n    ''316'':\n    - - ''348''\n      - *469\n    ''317'':\n    - - ''349''\n      - *470\n    ''318'':\n    - - ''350''\n      - *472\n    ''319'':\n    - - ''351''\n      - *473\n    ''32'':\n    - - ''32''\n      - *438\n    ''320'':\n    - - ''352''\n      - *474\n    ''321'':\n    - - ''353''\n      - *475\n    ''322'':\n    - - ''354''\n      - *476\n    ''323'':\n    - - ''355''\n      - *477\n    ''324'':\n    - - ''346''\n      - *467\n    ''325'':\n    - - ''356''\n      - *478\n    ''326'':\n    - - ''357''\n      - *479\n    ''327'':\n    - - ''359''\n      - *481\n    - - ''360''\n      - *483\n    ''328'':\n    - - ''361''\n      - *484\n    ''329'':\n    - - ''362''\n      - *485\n    ''33'':\n    - - ''33''\n      - *449\n    ''330'':\n    - - ''363''\n      - *486\n    ''331'':\n    - - ''364''\n      - *487\n    ''332'':\n    - - ''365''\n      - *488\n    ''333'':\n    - - ''366''\n      - *489\n    ''334'':\n    - - ''367''\n      - *490\n    ''335'':\n    - - ''368''\n      - *491\n    ''336'':\n    - - ''358''\n      - *480\n    ''337'':\n    - - ''369''\n      - *492\n    ''338'':\n    - - ''371''\n      - *495\n    ''339'':\n    - - ''372''\n      - *496\n    ''34'':\n    - - ''35''\n      - *471\n    - - ''36''\n      - *482\n    ''340'':\n    - - ''373''\n      - *497\n    - - ''374''\n      - *498\n    ''341'':\n    - - ''375''\n      - *499\n    ''342'':\n    - - ''376''\n      - *500\n    ''343'':\n    - - ''377''\n      - *501\n    ''344'':\n    - - ''378''\n      - *502\n    ''345'':\n    - - ''379''\n      - *503\n    ''346'':\n    - - ''381''\n      - *506\n    - - ''380''\n      - *505\n    ''347'':\n    - - ''382''\n      - *507\n    ''348'':\n    - - ''370''\n      - *494\n    ''349'':\n    - - ''383''\n      - *508\n    ''35'':\n    - - ''37''\n      - *493\n    ''350'':\n    - - ''384''\n      - *509\n    ''351'':\n    - - ''387''\n      - *512\n    - - ''386''\n      - *511\n    ''352'':\n    - - ''388''\n      - *513\n    ''353'':\n    - - ''389''\n      - *514\n    ''354'':\n    - - ''390''\n      - *516\n    ''355'':\n    - - ''391''\n      - *517\n    ''356'':\n    - - ''392''\n      - *518\n    ''357'':\n    - - ''393''\n      - *519\n    ''358'':\n    - - ''394''\n      - *520\n    ''359'':\n    - - ''395''\n      - *521\n    ''36'':\n    - - ''38''\n      - *504\n    ''360'':\n    - - ''385''\n      - *510\n    ''361'':\n    - - ''396''\n      - *522\n    ''362'':\n    - - ''399''\n      - *525\n    ''363'':\n    - - ''400''\n      - *528\n    ''364'':\n    - - ''401''\n      - *529\n    ''365'':\n    - - ''402''\n      - *530\n    - - ''403''\n      - *531\n    ''366'':\n    - - ''404''\n      - *532\n    ''367'':\n    - - ''405''\n      - *533\n    ''368'':\n    - - ''406''\n      - *534\n    ''369'':\n    - - ''408''\n      - *536\n    - - ''407''\n      - *535\n    ''37'':\n    - - ''39''\n      - *515\n    ''370'':\n    - - ''409''\n      - *537\n    ''371'':\n    - - ''410''\n      - *539\n    ''372'':\n    - - ''411''\n      - *540\n    ''373'':\n    - - ''398''\n      - *524\n    ''374'':\n    - - ''397''\n      - *523\n    ''375'':\n    - - ''412''\n      - *541\n    ''376'':\n    - - ''415''\n      - *544\n    ''377'':\n    - - ''416''\n      - *545\n    ''378'':\n    - - ''417''\n      - *546\n    ''379'':\n    - - ''418''\n      - *547\n    ''38'':\n    - - ''40''\n      - *527\n    ''380'':\n    - - ''419''\n      - *548\n    ''381'':\n    - - ''420''\n      - *550\n    ''382'':\n    - - ''421''\n      - *551\n    ''383'':\n    - - ''422''\n      - *552\n    ''384'':\n    - - ''423''\n      - *553\n    ''385'':\n    - - ''147''\n      - *246\n    - - ''283''\n      - *397\n    ''386'':\n    - - ''413''\n      - *542\n    - - ''414''\n      - *543\n    ''387'':\n    - - ''424''\n      - *554\n    ''388'':\n    - - ''427''\n      - *557\n    ''389'':\n    - - ''428''\n      - *558\n    ''39'':\n    - - ''41''\n      - *538\n    ''390'':\n    - - ''429''\n      - *559\n    ''391'':\n    - - ''430''\n      - *561\n    ''392'':\n    - - ''431''\n      - *562\n    ''393'':\n    - - ''432''\n      - *563\n    ''394'':\n    - - ''433''\n      - *564\n    ''395'':\n    - - ''434''\n      - *565\n    - - ''435''\n      - *566\n    ''396'':\n    - - ''436''\n      - *567\n    ''397'':\n    - - ''437''\n      - *568\n    ''398'':\n    - - ''426''\n      - *556\n    ''399'':\n    - - ''438''\n      - *569\n    ''4'':\n    - - ''1178''\n      - *202\n    - - ''1179''\n      - *203\n    ''40'':\n    - - ''42''\n      - *549\n    ''400'':\n    - - ''440''\n      - *572\n    ''401'':\n    - - ''441''\n      - *573\n    ''402'':\n    - - ''443''\n      - *575\n    ''403'':\n    - - ''442''\n      - *574\n    ''404'':\n    - - ''444''\n      - *576\n    - - ''445''\n      - *577\n    ''405'':\n    - - ''446''\n      - *578\n    ''406'':\n    - - ''447''\n      - *579\n    ''407'':\n    - - ''448''\n      - *580\n    ''408'':\n    - - ''449''\n      - *581\n    ''409'':\n    - - ''452''\n      - *585\n    - - ''450''\n      - *583\n    ''41'':\n    - - ''43''\n      - *560\n    - - ''44''\n      - *571\n    ''410'':\n    - - ''451''\n      - *584\n    ''411'':\n    - - ''454''\n      - *587\n    - - ''453''\n      - *586\n    ''412'':\n    - - ''439''\n      - *570\n    ''413'':\n    - - ''455''\n      - *588\n    ''414'':\n    - - ''457''\n      - *590\n    ''415'':\n    - - ''458''\n      - *591\n    ''416'':\n    - - ''459''\n      - *592\n    ''417'':\n    - - ''460''\n      - *594\n    ''418'':\n    - - ''461''\n      - *595\n    ''419'':\n    - - ''462''\n      - *596\n    ''42'':\n    - - ''45''\n      - *582\n    ''420'':\n    - - ''463''\n      - *597\n    ''421'':\n    - - ''464''\n      - *598\n    ''422'':\n    - - ''465''\n      - *599\n    ''423'':\n    - - ''456''\n      - *589\n    ''424'':\n    - - ''466''\n      - *600\n    ''425'':\n    - - ''468''\n      - *602\n    ''426'':\n    - - ''469''\n      - *603\n    ''427'':\n    - - ''470''\n      - *605\n    ''428'':\n    - - ''471''\n      - *606\n    ''429'':\n    - - ''472''\n      - *607\n    ''43'':\n    - - ''34''\n      - *460\n    ''430'':\n    - - ''473''\n      - *608\n    ''431'':\n    - - ''474''\n      - *609\n    ''432'':\n    - - ''475''\n      - *610\n    ''433'':\n    - - ''476''\n      - *611\n    ''434'':\n    - - ''467''\n      - *601\n    ''435'':\n    - - ''477''\n      - *612\n    ''436'':\n    - - ''479''\n      - *614\n    ''437'':\n    - - ''480''\n      - *616\n    ''438'':\n    - - ''481''\n      - *617\n    ''439'':\n    - - ''482''\n      - *618\n    ''44'':\n    - - ''46''\n      - *593\n    ''440'':\n    - - ''483''\n      - *619\n    ''441'':\n    - - ''484''\n      - *620\n    ''442'':\n    - - ''485''\n      - *621\n    ''443'':\n    - - ''486''\n      - *622\n    ''444'':\n    - - ''487''\n      - *623\n    ''445'':\n    - - ''478''\n      - *613\n    ''446'':\n    - - ''488''\n      - *624\n    ''447'':\n    - - ''490''\n      - *627\n    ''448'':\n    - - ''491''\n      - *628\n    ''449'':\n    - - ''492''\n      - *629\n    ''45'':\n    - - ''48''\n      - *615\n    ''450'':\n    - - ''493''\n      - *630\n    ''451'':\n    - - ''494''\n      - *631\n    ''452'':\n    - - ''495''\n      - *632\n    ''453'':\n    - - ''496''\n      - *633\n    ''454'':\n    - - ''497''\n      - *634\n    ''455'':\n    - - ''498''\n      - *635\n    ''456'':\n    - - ''499''\n      - *636\n    ''457'':\n    - - ''489''\n      - *625\n    ''458'':\n    - - ''501''\n      - *640\n    - - ''500''\n      - *639\n    ''459'':\n    - - ''503''\n      - *642\n    ''46'':\n    - - ''49''\n      - *626\n    ''460'':\n    - - ''504''\n      - *643\n    ''461'':\n    - - ''505''\n      - *644\n    ''462'':\n    - - ''506''\n      - *645\n    ''463'':\n    - - ''507''\n      - *646\n    ''464'':\n    - - ''508''\n      - *647\n    ''465'':\n    - - ''509''\n      - *648\n    ''466'':\n    - - ''510''\n      - *650\n    ''467'':\n    - - ''511''\n      - *651\n    ''468'':\n    - - ''502''\n      - *641\n    ''469'':\n    - - ''512''\n      - *652\n    ''47'':\n    - - ''50''\n      - *638\n    ''470'':\n    - - ''514''\n      - *654\n    ''471'':\n    - - ''515''\n      - *655\n    ''472'':\n    - - ''516''\n      - *656\n    ''473'':\n    - - ''517''\n      - *657\n    ''474'':\n    - - ''518''\n      - *658\n    ''475'':\n    - - ''519''\n      - *659\n    ''476'':\n    - - ''520''\n      - *661\n    ''477'':\n    - - ''521''\n      - *662\n    ''478'':\n    - - ''522''\n      - *663\n    ''479'':\n    - - ''513''\n      - *653\n    ''48'':\n    - - ''51''\n      - *649\n    ''480'':\n    - - ''523''\n      - *664\n    ''481'':\n    - - ''525''\n      - *666\n    ''482'':\n    - - ''526''\n      - *667\n    ''483'':\n    - - ''527''\n      - *668\n    ''484'':\n    - - ''528''\n      - *669\n    ''485'':\n    - - ''529''\n      - *670\n    ''486'':\n    - - ''530''\n      - *672\n    ''487'':\n    - - ''531''\n      - *673\n    ''488'':\n    - - ''532''\n      - *674\n    ''489'':\n    - - ''533''\n      - *675\n    ''49'':\n    - - ''52''\n      - *660\n    ''490'':\n    - - ''524''\n      - *665\n    ''491'':\n    - - ''534''\n      - *676\n    ''492'':\n    - - ''536''\n      - *678\n    ''493'':\n    - - ''537''\n      - *679\n    ''494'':\n    - - ''540''\n      - *683\n    ''495'':\n    - - ''541''\n      - *684\n    ''496'':\n    - - ''539''\n      - *681\n    ''497'':\n    - - ''538''\n      - *680\n    ''498'':\n    - - ''545''\n      - *688\n    - - ''542''\n      - *685\n    - - ''544''\n      - *687\n    - - ''543''\n      - *686\n    ''499'':\n    - - ''546''\n      - *689\n    ''5'':\n    - - ''1189''\n      - *214\n    ''50'':\n    - - ''53''\n      - *671\n    ''500'':\n    - - ''547''\n      - *690\n    ''501'':\n    - - ''548''\n      - *691\n    ''502'':\n    - - ''549''\n      - *692\n    ''503'':\n    - - ''550''\n      - *694\n    - - ''551''\n      - *695\n    ''504'':\n    - - ''552''\n      - *696\n    ''505'':\n    - - ''425''\n      - *555\n    ''506'':\n    - - ''535''\n      - *677\n    ''507'':\n    - - ''554''\n      - *698\n    ''508'':\n    - - ''553''\n      - *697\n    - - ''555''\n      - *699\n    ''509'':\n    - - ''558''\n      - *702\n    - - ''559''\n      - *703\n    ''51'':\n    - - ''54''\n      - *682\n    ''510'':\n    - - ''560''\n      - *705\n    ''511'':\n    - - ''561''\n      - *706\n    ''512'':\n    - - ''562''\n      - *707\n    ''513'':\n    - - ''563''\n      - *708\n    ''514'':\n    - - ''564''\n      - *709\n    ''515'':\n    - - ''565''\n      - *710\n    ''516'':\n    - - ''566''\n      - *711\n    ''517'':\n    - - ''567''\n      - *712\n    ''518'':\n    - - ''557''\n      - *701\n    ''519'':\n    - - ''568''\n      - *713\n    ''52'':\n    - - ''55''\n      - *693\n    ''520'':\n    - - ''570''\n      - *716\n    ''521'':\n    - - ''571''\n      - *717\n    ''522'':\n    - - ''572''\n      - *718\n    ''523'':\n    - - ''573''\n      - *719\n    ''524'':\n    - - ''575''\n      - *721\n    ''525'':\n    - - ''574''\n      - *720\n    ''526'':\n    - - ''576''\n      - *722\n    - - ''577''\n      - *723\n    ''527'':\n    - - ''578''\n      - *724\n    ''528'':\n    - - ''579''\n      - *725\n    ''529'':\n    - - ''580''\n      - *727\n    ''53'':\n    - - ''56''\n      - *704\n    ''530'':\n    - - ''569''\n      - *714\n    ''531'':\n    - - ''581''\n      - *728\n    ''532'':\n    - - ''583''\n      - *730\n    ''533'':\n    - - ''584''\n      - *731\n    ''534'':\n    - - ''585''\n      - *732\n    ''535'':\n    - - ''586''\n      - *733\n    ''536'':\n    - - ''587''\n      - *734\n    ''537'':\n    - - ''588''\n      - *735\n    ''538'':\n    - - ''589''\n      - *736\n    ''539'':\n    - - ''590''\n      - *738\n    ''54'':\n    - - ''47''\n      - *604\n    ''540'':\n    - - ''591''\n      - *739\n    ''541'':\n    - - ''582''\n      - *729\n    ''542'':\n    - - ''592''\n      - *740\n    ''543'':\n    - - ''594''\n      - *742\n    ''544'':\n    - - ''595''\n      - *743\n    ''545'':\n    - - ''596''\n      - *744\n    ''546'':\n    - - ''597''\n      - *745\n    ''547'':\n    - - ''598''\n      - *746\n    ''548'':\n    - - ''599''\n      - *747\n    ''549'':\n    - - ''600''\n      - *750\n    ''55'':\n    - - ''57''\n      - *715\n    ''550'':\n    - - ''601''\n      - *751\n    ''551'':\n    - - ''602''\n      - *752\n    ''552'':\n    - - ''593''\n      - *741\n    ''553'':\n    - - ''603''\n      - *753\n    ''554'':\n    - - ''605''\n      - *755\n    ''555'':\n    - - ''606''\n      - *756\n    ''556'':\n    - - ''607''\n      - *757\n    ''557'':\n    - - ''608''\n      - *758\n    ''558'':\n    - - ''609''\n      - *759\n    ''559'':\n    - - ''610''\n      - *761\n    ''56'':\n    - - ''59''\n      - *737\n    ''560'':\n    - - ''611''\n      - *762\n    ''561'':\n    - - ''612''\n      - *763\n    ''562'':\n    - - ''613''\n      - *764\n    ''563'':\n    - - ''604''\n      - *754\n    ''564'':\n    - - ''614''\n      - *765\n    ''565'':\n    - - ''616''\n      - *767\n    ''566'':\n    - - ''617''\n      - *768\n    ''567'':\n    - - ''618''\n      - *769\n    ''568'':\n    - - ''619''\n      - *770\n    ''569'':\n    - - ''620''\n      - *772\n    ''57'':\n    - - ''60''\n      - *749\n    ''570'':\n    - - ''621''\n      - *773\n    ''571'':\n    - - ''622''\n      - *774\n    ''572'':\n    - - ''623''\n      - *775\n    - - ''624''\n      - *776\n    ''573'':\n    - - ''625''\n      - *777\n    ''574'':\n    - - ''626''\n      - *778\n    ''575'':\n    - - ''628''\n      - *780\n    - - ''627''\n      - *779\n    ''576'':\n    - - ''615''\n      - *766\n    ''577'':\n    - - ''629''\n      - *781\n    ''578'':\n    - - ''631''\n      - *784\n    ''579'':\n    - - ''632''\n      - *785\n    ''58'':\n    - - ''61''\n      - *760\n    ''580'':\n    - - ''633''\n      - *786\n    ''581'':\n    - - ''634''\n      - *787\n    ''582'':\n    - - ''635''\n      - *788\n    ''583'':\n    - - ''636''\n      - *789\n    ''584'':\n    - - ''637''\n      - *790\n    ''585'':\n    - - ''638''\n      - *791\n    ''586'':\n    - - ''639''\n      - *792\n    ''587'':\n    - - ''630''\n      - *783\n    ''588'':\n    - - ''640''\n      - *794\n    ''589'':\n    - - ''642''\n      - *796\n    ''59'':\n    - - ''62''\n      - *771\n    ''590'':\n    - - ''643''\n      - *797\n    ''591'':\n    - - ''644''\n      - *798\n    ''592'':\n    - - ''645''\n      - *799\n    ''593'':\n    - - ''646''\n      - *800\n    ''594'':\n    - - ''647''\n      - *801\n    ''595'':\n    - - ''648''\n      - *802\n    ''596'':\n    - - ''649''\n      - *803\n    ''597'':\n    - - ''650''\n      - *805\n    ''598'':\n    - - ''641''\n      - *795\n    ''599'':\n    - - ''651''\n      - *806\n    ''6'':\n    - - ''5''\n      - *637\n    ''60'':\n    - - ''63''\n      - *782\n    ''600'':\n    - - ''653''\n      - *808\n    ''601'':\n    - - ''654''\n      - *809\n    ''602'':\n    - - ''655''\n      - *810\n    ''603'':\n    - - ''656''\n      - *811\n    ''604'':\n    - - ''657''\n      - *812\n    ''605'':\n    - - ''659''\n      - *814\n    ''606'':\n    - - ''658''\n      - *813\n    ''607'':\n    - - ''661''\n      - *817\n    ''608'':\n    - - ''662''\n      - *818\n    ''609'':\n    - - ''663''\n      - *819\n    ''61'':\n    - - ''64''\n      - *793\n    ''610'':\n    - - ''652''\n      - *807\n    ''611'':\n    - - ''664''\n      - *820\n    ''612'':\n    - - ''666''\n      - *822\n    ''613'':\n    - - ''667''\n      - *823\n    ''614'':\n    - - ''668''\n      - *824\n    ''615'':\n    - - ''669''\n      - *825\n    ''616'':\n    - - ''670''\n      - *827\n    ''617'':\n    - - ''671''\n      - *828\n    ''618'':\n    - - ''673''\n      - *830\n    ''619'':\n    - - ''672''\n      - *829\n    ''62'':\n    - - ''65''\n      - *804\n    ''620'':\n    - - ''675''\n      - *832\n    - - ''674''\n      - *831\n    ''621'':\n    - - ''676''\n      - *833\n    ''622'':\n    - - ''556''\n      - *700\n    ''623'':\n    - - ''665''\n      - *821\n    ''624'':\n    - - ''677''\n      - *834\n    ''625'':\n    - - ''680''\n      - *838\n    ''626'':\n    - - ''681''\n      - *839\n    ''627'':\n    - - ''682''\n      - *840\n    ''628'':\n    - - ''683''\n      - *841\n    ''629'':\n    - - ''684''\n      - *842\n    ''63'':\n    - - ''66''\n      - *815\n    - - ''67''\n      - *826\n    ''630'':\n    - - ''685''\n      - *843\n    ''631'':\n    - - ''686''\n      - *844\n    ''632'':\n    - - ''687''\n      - *845\n    ''633'':\n    - - ''688''\n      - *846\n    ''634'':\n    - - ''679''\n      - *836\n    ''635'':\n    - - ''689''\n      - *847\n    ''636'':\n    - - ''692''\n      - *851\n    ''637'':\n    - - ''693''\n      - *852\n    ''638'':\n    - - ''694''\n      - *853\n    ''639'':\n    - - ''695''\n      - *854\n    ''64'':\n    - - ''68''\n      - *837\n    ''640'':\n    - - ''696''\n      - *855\n    ''641'':\n    - - ''697''\n      - *856\n    ''642'':\n    - - ''698''\n      - *857\n    - - ''699''\n      - *858\n    ''643'':\n    - - ''700''\n      - *861\n    ''644'':\n    - - ''701''\n      - *862\n    ''645'':\n    - - ''702''\n      - *863\n    - - ''703''\n      - *864\n    ''646'':\n    - - ''704''\n      - *865\n    ''647'':\n    - - ''690''\n      - *849\n    ''648'':\n    - - ''705''\n      - *866\n    ''649'':\n    - - ''707''\n      - *868\n    ''65'':\n    - - ''69''\n      - *848\n    ''650'':\n    - - ''708''\n      - *869\n    ''651'':\n    - - ''709''\n      - *870\n    ''652'':\n    - - ''710''\n      - *872\n    ''653'':\n    - - ''711''\n      - *873\n    ''654'':\n    - - ''712''\n      - *874\n    ''655'':\n    - - ''713''\n      - *875\n    ''656'':\n    - - ''714''\n      - *876\n    ''657'':\n    - - ''715''\n      - *877\n    ''658'':\n    - - ''706''\n      - *867\n    ''659'':\n    - - ''716''\n      - *878\n    ''66'':\n    - - ''58''\n      - *726\n    ''660'':\n    - - ''718''\n      - *880\n    ''661'':\n    - - ''720''\n      - *883\n    ''662'':\n    - - ''719''\n      - *881\n    ''663'':\n    - - ''722''\n      - *885\n    - - ''721''\n      - *884\n    ''664'':\n    - - ''723''\n      - *886\n    ''665'':\n    - - ''724''\n      - *887\n    ''666'':\n    - - ''725''\n      - *888\n    - - ''726''\n      - *889\n    ''667'':\n    - - ''727''\n      - *890\n    ''668'':\n    - - ''728''\n      - *891\n    ''669'':\n    - - ''729''\n      - *892\n    - - ''730''\n      - *894\n    ''67'':\n    - - ''70''\n      - *860\n    ''670'':\n    - - ''731''\n      - *895\n    ''671'':\n    - - ''732''\n      - *896\n    ''672'':\n    - - ''717''\n      - *879\n    - - ''691''\n      - *850\n    ''673'':\n    - - ''733''\n      - *897\n    ''674'':\n    - - ''735''\n      - *899\n    ''675'':\n    - - ''736''\n      - *900\n    ''676'':\n    - - ''737''\n      - *901\n    ''677'':\n    - - ''738''\n      - *902\n    ''678'':\n    - - ''739''\n      - *903\n    ''679'':\n    - - ''740''\n      - *905\n    ''68'':\n    - - ''72''\n      - *882\n    ''680'':\n    - - ''741''\n      - *906\n    ''681'':\n    - - ''742''\n      - *907\n    ''682'':\n    - - ''743''\n      - *908\n    ''683'':\n    - - ''734''\n      - *898\n    ''684'':\n    - - ''744''\n      - *909\n    ''685'':\n    - - ''746''\n      - *911\n    ''686'':\n    - - ''747''\n      - *912\n    ''687'':\n    - - ''748''\n      - *913\n    ''688'':\n    - - ''749''\n      - *914\n    ''689'':\n    - - ''750''\n      - *916\n    ''69'':\n    - - ''73''\n      - *893\n    ''690'':\n    - - ''751''\n      - *917\n    ''691'':\n    - - ''752''\n      - *918\n    ''692'':\n    - - ''753''\n      - *919\n    ''693'':\n    - - ''754''\n      - *920\n    ''694'':\n    - - ''745''\n      - *910\n    ''695'':\n    - - ''755''\n      - *921\n    ''696'':\n    - - ''757''\n      - *923\n    ''697'':\n    - - ''758''\n      - *924\n    ''698'':\n    - - ''759''\n      - *925\n    ''699'':\n    - - ''760''\n      - *927\n    ''7'':\n    - - ''6''\n      - *748\n    ''70'':\n    - - ''74''\n      - *904\n    ''700'':\n    - - ''761''\n      - *928\n    ''701'':\n    - - ''762''\n      - *929\n    ''702'':\n    - - ''763''\n      - *930\n    ''703'':\n    - - ''764''\n      - *931\n    ''704'':\n    - - ''765''\n      - *932\n    ''705'':\n    - - ''756''\n      - *922\n    ''706'':\n    - - ''766''\n      - *933\n    ''707'':\n    - - ''768''\n      - *935\n    ''708'':\n    - - ''769''\n      - *936\n    ''709'':\n    - - ''770''\n      - *938\n    ''71'':\n    - - ''76''\n      - *926\n    - - ''75''\n      - *915\n    ''710'':\n    - - ''771''\n      - *939\n    ''711'':\n    - - ''772''\n      - *940\n    ''712'':\n    - - ''773''\n      - *941\n    ''713'':\n    - - ''774''\n      - *942\n    ''714'':\n    - - ''775''\n      - *943\n    ''715'':\n    - - ''776''\n      - *944\n    ''716'':\n    - - ''767''\n      - *934\n    ''717'':\n    - - ''777''\n      - *945\n    ''718'':\n    - - ''779''\n      - *947\n    ''719'':\n    - - ''780''\n      - *949\n    ''72'':\n    - - ''77''\n      - *937\n    ''720'':\n    - - ''781''\n      - *950\n    ''721'':\n    - - ''782''\n      - *951\n    ''722'':\n    - - ''783''\n      - *952\n    ''723'':\n    - - ''784''\n      - *953\n    ''724'':\n    - - ''786''\n      - *955\n    - - ''785''\n      - *954\n    ''725'':\n    - - ''787''\n      - *956\n    ''726'':\n    - - ''788''\n      - *957\n    ''727'':\n    - - ''789''\n      - *958\n    ''728'':\n    - - ''778''\n      - *946\n    ''729'':\n    - - ''790''\n      - *960\n    ''73'':\n    - - ''78''\n      - *948\n    ''730'':\n    - - ''792''\n      - *962\n    ''731'':\n    - - ''793''\n      - *963\n    ''732'':\n    - - ''794''\n      - *964\n    ''733'':\n    - - ''795''\n      - *965\n    ''734'':\n    - - ''796''\n      - *966\n    ''735'':\n    - - ''797''\n      - *967\n    ''736'':\n    - - ''798''\n      - *968\n    ''737'':\n    - - ''799''\n      - *969\n    ''738'':\n    - - ''800''\n      - *972\n    ''739'':\n    - - ''678''\n      - *835\n    ''74'':\n    - - ''79''\n      - *959\n    ''740'':\n    - - ''791''\n      - *961\n    ''741'':\n    - - ''801''\n      - *973\n    ''742'':\n    - - ''804''\n      - *976\n    ''743'':\n    - - ''805''\n      - *977\n    ''744'':\n    - - ''806''\n      - *978\n    ''745'':\n    - - ''807''\n      - *979\n    ''746'':\n    - - ''808''\n      - *980\n    ''747'':\n    - - ''809''\n      - *981\n    ''748'':\n    - - ''810''\n      - *983\n    ''749'':\n    - - ''811''\n      - *984\n    ''75'':\n    - - ''80''\n      - *971\n    ''750'':\n    - - ''812''\n      - *985\n    ''751'':\n    - - ''803''\n      - *975\n    ''752'':\n    - - ''813''\n      - *986\n    ''753'':\n    - - ''815''\n      - *988\n    ''754'':\n    - - ''816''\n      - *989\n    ''755'':\n    - - ''817''\n      - *990\n    ''756'':\n    - - ''818''\n      - *991\n    ''757'':\n    - - ''819''\n      - *992\n    ''758'':\n    - - ''820''\n      - *994\n    ''759'':\n    - - ''821''\n      - *995\n    ''76'':\n    - - ''81''\n      - *982\n    ''760'':\n    - - ''822''\n      - *996\n    ''761'':\n    - - ''823''\n      - *997\n    ''762'':\n    - - ''814''\n      - *987\n    ''763'':\n    - - ''824''\n      - *998\n    ''764'':\n    - - ''827''\n      - *1001\n    ''765'':\n    - - ''828''\n      - *1002\n    ''766'':\n    - - ''829''\n      - *1003\n    ''767'':\n    - - ''830''\n      - *1005\n    ''768'':\n    - - ''831''\n      - *1006\n    ''769'':\n    - - ''832''\n      - *1007\n    ''77'':\n    - - ''82''\n      - *993\n    ''770'':\n    - - ''833''\n      - *1008\n    ''771'':\n    - - ''834''\n      - *1009\n    ''772'':\n    - - ''835''\n      - *1010\n    ''773'':\n    - - ''825''\n      - *999\n    ''774'':\n    - - ''826''\n      - *1000\n    ''775'':\n    - - ''836''\n      - *1011\n    ''776'':\n    - - ''839''\n      - *1014\n    ''777'':\n    - - ''840''\n      - *1016\n    ''778'':\n    - - ''841''\n      - *1017\n    ''779'':\n    - - ''842''\n      - *1018\n    ''78'':\n    - - ''71''\n      - *871\n    ''780'':\n    - - ''843''\n      - *1019\n    ''781'':\n    - - ''844''\n      - *1020\n    ''782'':\n    - - ''846''\n      - *1022\n    ''783'':\n    - - ''845''\n      - *1021\n    ''784'':\n    - - ''847''\n      - *1023\n    - - ''848''\n      - *1024\n    ''785'':\n    - - ''849''\n      - *1025\n    ''786'':\n    - - ''837''\n      - *1012\n    - - ''838''\n      - *1013\n    ''787'':\n    - - ''850''\n      - *1027\n    ''788'':\n    - - ''852''\n      - *1029\n    ''789'':\n    - - ''855''\n      - *1032\n    ''79'':\n    - - ''83''\n      - *1004\n    ''790'':\n    - - ''856''\n      - *1033\n    ''791'':\n    - - ''857''\n      - *1034\n    ''792'':\n    - - ''854''\n      - *1031\n    - - ''858''\n      - *1035\n    ''793'':\n    - - ''859''\n      - *1036\n    ''794'':\n    - - ''860''\n      - *1038\n    ''795'':\n    - - ''861''\n      - *1039\n    - - ''853''\n      - *1030\n    ''796'':\n    - - ''862''\n      - *1040\n    ''797'':\n    - - ''851''\n      - *1028\n    ''798'':\n    - - ''863''\n      - *1041\n    ''799'':\n    - - ''866''\n      - *1044\n    ''8'':\n    - - ''7''\n      - *859\n    ''80'':\n    - - ''85''\n      - *1026\n    ''800'':\n    - - ''867''\n      - *1045\n    ''801'':\n    - - ''868''\n      - *1046\n    ''802'':\n    - - ''869''\n      - *1047\n    ''803'':\n    - - ''870''\n      - *1049\n    ''804'':\n    - - ''871''\n      - *1050\n    ''805'':\n    - - ''872''\n      - *1051\n    ''806'':\n    - - ''874''\n      - *1053\n    - - ''873''\n      - *1052\n    ''807'':\n    - - ''875''\n      - *1054\n    ''808'':\n    - - ''864''\n      - *1042\n    ''809'':\n    - - ''865''\n      - *1043\n    ''81'':\n    - - ''86''\n      - *1037\n    ''810'':\n    - - ''876''\n      - *1055\n    ''811'':\n    - - ''879''\n      - *1058\n    ''812'':\n    - - ''881''\n      - *1061\n    ''813'':\n    - - ''880''\n      - *1060\n    ''814'':\n    - - ''882''\n      - *1062\n    ''815'':\n    - - ''883''\n      - *1063\n    - - ''884''\n      - *1064\n    ''816'':\n    - - ''885''\n      - *1065\n    ''817'':\n    - - ''886''\n      - *1066\n    ''818'':\n    - - ''887''\n      - *1067\n    ''819'':\n    - - ''888''\n      - *1068\n    ''82'':\n    - - ''87''\n      - *1048\n    ''820'':\n    - - ''889''\n      - *1069\n    ''821'':\n    - - ''877''\n      - *1056\n    - - ''878''\n      - *1057\n    ''822'':\n    - - ''890''\n      - *1071\n    ''823'':\n    - - ''892''\n      - *1073\n    ''824'':\n    - - ''893''\n      - *1074\n    ''825'':\n    - - ''894''\n      - *1075\n    ''826'':\n    - - ''895''\n      - *1076\n    ''827'':\n    - - ''896''\n      - *1077\n    ''828'':\n    - - ''897''\n      - *1078\n    ''829'':\n    - - ''899''\n      - *1080\n    ''83'':\n    - - ''88''\n      - *1059\n    ''830'':\n    - - ''900''\n      - *1083\n    ''831'':\n    - - ''898''\n      - *1079\n    ''832'':\n    - - ''903''\n      - *1086\n    - - ''901''\n      - *1084\n    - - ''902''\n      - *1085\n    ''833'':\n    - - ''904''\n      - *1087\n    ''834'':\n    - - ''891''\n      - *1072\n    ''835'':\n    - - ''905''\n      - *1088\n    ''836'':\n    - - ''906''\n      - *1089\n    ''837'':\n    - - ''908''\n      - *1091\n    - - ''909''\n      - *1092\n    ''838'':\n    - - ''910''\n      - *1094\n    ''839'':\n    - - ''911''\n      - *1095\n    ''84'':\n    - - ''91''\n      - *1093\n    ''840'':\n    - - ''912''\n      - *1096\n    ''841'':\n    - - ''913''\n      - *1097\n    ''842'':\n    - - ''914''\n      - *1098\n    ''843'':\n    - - ''915''\n      - *1099\n    ''844'':\n    - - ''916''\n      - *1100\n    ''845'':\n    - - ''917''\n      - *1101\n    ''846'':\n    - - ''907''\n      - *1090\n    ''847'':\n    - - ''918''\n      - *1102\n    ''848'':\n    - - ''920''\n      - *1105\n    ''849'':\n    - - ''921''\n      - *1106\n    ''85'':\n    - - ''89''\n      - *1070\n    ''850'':\n    - - ''922''\n      - *1107\n    ''851'':\n    - - ''923''\n      - *1108\n    ''852'':\n    - - ''924''\n      - *1109\n    ''853'':\n    - - ''925''\n      - *1110\n    ''854'':\n    - - ''926''\n      - *1111\n    ''855'':\n    - - ''927''\n      - *1112\n    ''856'':\n    - - ''928''\n      - *1113\n    ''857'':\n    - - ''802''\n      - *974\n    ''858'':\n    - - ''919''\n      - *1103\n    ''859'':\n    - - ''929''\n      - *1114\n    ''86'':\n    - - ''90''\n      - *1082\n    ''860'':\n    - - ''932''\n      - *1118\n    ''861'':\n    - - ''933''\n      - *1119\n    ''862'':\n    - - ''935''\n      - *1121\n    ''863'':\n    - - ''936''\n      - *1122\n    - - ''934''\n      - *1120\n    ''864'':\n    - - ''937''\n      - *1123\n    - - ''938''\n      - *1124\n    ''865'':\n    - - ''939''\n      - *1125\n    ''866'':\n    - - ''940''\n      - *1127\n    ''867'':\n    - - ''941''\n      - *1128\n    ''868'':\n    - - ''942''\n      - *1129\n    ''869'':\n    - - ''943''\n      - *1130\n    ''87'':\n    - - ''92''\n      - *1104\n    - - ''94''\n      - *1126\n    - - ''93''\n      - *1115\n    ''870'':\n    - - ''931''\n      - *1117\n    ''871'':\n    - - ''944''\n      - *1131\n    ''872'':\n    - - ''946''\n      - *1133\n    ''873'':\n    - - ''947''\n      - *1134\n    ''874'':\n    - - ''948''\n      - *1135\n    ''875'':\n    - - ''949''\n      - *1136\n    ''876'':\n    - - ''951''\n      - *1139\n    ''877'':\n    - - ''950''\n      - *1138\n    ''878'':\n    - - ''953''\n      - *1141\n    - - ''952''\n      - *1140\n    ''879'':\n    - - ''954''\n      - *1142\n    ''88'':\n    - - ''95''\n      - *1137\n    ''880'':\n    - - ''955''\n      - *1143\n    ''881'':\n    - - ''956''\n      - *1144\n    ''882'':\n    - - ''945''\n      - *1132\n    ''883'':\n    - - ''957''\n      - *1145\n    ''884'':\n    - - ''959''\n      - *1147\n    ''885'':\n    - - ''960''\n      - *1149\n    ''886'':\n    - - ''961''\n      - *1150\n    ''887'':\n    - - ''962''\n      - *1151\n    ''888'':\n    - - ''963''\n      - *1152\n    ''889'':\n    - - ''964''\n      - *1153\n    ''89'':\n    - - ''96''\n      - *1148\n    ''890'':\n    - - ''965''\n      - *1154\n    ''891'':\n    - - ''966''\n      - *1155\n    ''892'':\n    - - ''967''\n      - *1156\n    ''893'':\n    - - ''958''\n      - *1146\n    ''894'':\n    - - ''968''\n      - *1157\n    ''895'':\n    - - ''970''\n      - *1160\n    ''896'':\n    - - ''971''\n      - *1161\n    ''897'':\n    - - ''972''\n      - *1162\n    ''898'':\n    - - ''973''\n      - *1163\n    ''899'':\n    - - ''974''\n      - *1164\n    ''9'':\n    - - ''8''\n      - *970\n    ''90'':\n    - - ''97''\n      - *1159\n    ''900'':\n    - - ''975''\n      - *1165\n    ''901'':\n    - - ''977''\n      - *1167\n    ''902'':\n    - - ''976''\n      - *1166\n    ''903'':\n    - - ''978''\n      - *1168\n    - - ''979''\n      - *1169\n    ''904'':\n    - - ''980''\n      - *1171\n    ''905'':\n    - - ''969''\n      - *1158\n    ''906'':\n    - - ''981''\n      - *1172\n    ''907'':\n    - - ''983''\n      - *1174\n    ''908'':\n    - - ''984''\n      - *1175\n    ''909'':\n    - - ''985''\n      - *1176\n    ''91'':\n    - - ''84''\n      - *1015\n    ''910'':\n    - - ''986''\n      - *1177\n    ''911'':\n    - - ''987''\n      - *1178\n    ''912'':\n    - - ''988''\n      - *1179\n    ''913'':\n    - - ''989''\n      - *1180\n    ''914'':\n    - - ''990''\n      - *1182\n    ''915'':\n    - - ''991''\n      - *1183\n    ''916'':\n    - - ''982''\n      - *1173\n    ''917'':\n    - - ''992''\n      - *1184\n    ''918'':\n    - - ''994''\n      - *1186\n    ''919'':\n    - - ''995''\n      - *1187\n    ''92'':\n    - - ''98''\n      - *1170\n    ''920'':\n    - - ''996''\n      - *1188\n    ''921'':\n    - - ''998''\n      - *1190\n    ''922'':\n    - - ''999''\n      - *1191\n    ''923'':\n    - - ''1000''\n      - *6\n    ''924'':\n    - - ''1001''\n      - *7\n    ''925'':\n    - - ''1002''\n      - *8\n    ''926'':\n    - - ''1003''\n      - *9\n    ''927'':\n    - - ''993''\n      - *1185\n    ''928'':\n    - - ''1004''\n      - *10\n    ''929'':\n    - - ''1006''\n      - *12\n    ''93'':\n    - - ''100''\n      - *5\n    ''930'':\n    - - ''1007''\n      - *13\n    ''931'':\n    - - ''1008''\n      - *14\n    ''932'':\n    - - ''1009''\n      - *15\n    ''933'':\n    - - ''1010''\n      - *17\n    ''934'':\n    - - ''1011''\n      - *18\n    ''935'':\n    - - ''1012''\n      - *19\n    ''936'':\n    - - ''1013''\n      - *20\n    ''937'':\n    - - ''1014''\n      - *21\n    ''938'':\n    - - ''1005''\n      - *11\n    ''939'':\n    - - ''1015''\n      - *22\n    ''94'':\n    - - ''101''\n      - *16\n    ''940'':\n    - - ''1017''\n      - *24\n    ''941'':\n    - - ''1018''\n      - *25\n    ''942'':\n    - - ''1019''\n      - *26\n    ''943'':\n    - - ''1020''\n      - *28\n    ''944'':\n    - - ''1021''\n      - *29\n    ''945'':\n    - - ''1022''\n      - *30\n    ''946'':\n    - - ''1023''\n      - *31\n    ''947'':\n    - - ''1024''\n      - *32\n    ''948'':\n    - - ''1025''\n      - *33\n    ''949'':\n    - - ''1016''\n      - *23\n    ''95'':\n    - - ''102''\n      - *27\n    ''950'':\n    - - ''1026''\n      - *34\n    ''951'':\n    - - ''1028''\n      - *36\n    ''952'':\n    - - ''1029''\n      - *37\n    ''953'':\n    - - ''1030''\n      - *39\n    ''954'':\n    - - ''1031''\n      - *40\n    ''955'':\n    - - ''1032''\n      - *41\n    ''956'':\n    - - ''1033''\n      - *42\n    ''957'':\n    - - ''1034''\n      - *43\n    ''958'':\n    - - ''1035''\n      - *44\n    ''959'':\n    - - ''1036''\n      - *45\n    ''96'':\n    - - ''103''\n      - *38\n    ''960'':\n    - - ''1027''\n      - *35\n    ''961'':\n    - - ''1037''\n      - *46\n    ''962'':\n    - - ''1039''\n      - *48\n    ''963'':\n    - - ''1040''\n      - *50\n    ''964'':\n    - - ''1041''\n      - *51\n    ''965'':\n    - - ''1042''\n      - *52\n    ''966'':\n    - - ''1043''\n      - *53\n    ''967'':\n    - - ''1044''\n      - *54\n    - - ''1045''\n      - *55\n    ''968'':\n    - - ''1047''\n      - *57\n    ''969'':\n    - - ''1048''\n      - *58\n    ''97'':\n    - - ''104''\n      - *49\n    ''970'':\n    - - ''1049''\n      - *59\n    - - ''1046''\n      - *56\n    ''971'':\n    - - ''930''\n      - *1116\n    ''972'':\n    - - ''1038''\n      - *47\n    ''973'':\n    - - ''1050''\n      - *61\n    ''974'':\n    - - ''1055''\n      - *66\n    ''975'':\n    - - ''1056''\n      - *67\n    ''976'':\n    - - ''1057''\n      - *68\n    ''977'':\n    - - ''1058''\n      - *69\n    ''978'':\n    - - ''1059''\n      - *70\n    ''979'':\n    - - ''1060''\n      - *72\n    ''98'':\n    - - ''105''\n      - *60\n    ''980'':\n    - - ''1061''\n      - *73\n    ''981'':\n    - - ''997''\n      - *1189\n    - - ''1062''\n      - *74\n    ''982'':\n    - - ''1063''\n      - *75\n    ''983'':\n    - - ''1053''\n      - *64\n    ''984'':\n    - - ''1054''\n      - *65\n    ''985'':\n    - - ''1052''\n      - *63\n    ''986'':\n    - - ''1064''\n      - *76\n    ''987'':\n    - - ''1068''\n      - *80\n    ''988'':\n    - - ''1069''\n      - *81\n    ''989'':\n    - - ''1070''\n      - *83\n    ''99'':\n    - - ''106''\n      - *71\n    ''990'':\n    - - ''1071''\n      - *84\n    ''991'':\n    - - ''1072''\n      - *85\n    ''992'':\n    - - ''1073''\n      - *86\n    ''993'':\n    - - ''1074''\n      - *87\n    ''994'':\n    - - ''1076''\n      - *89\n    - - ''1075''\n      - *88\n    ''995'':\n    - - ''1077''\n      - *90\n    ''996'':\n    - - ''1078''\n      - *91\n    ''997'':\n    - - ''1065''\n      - *77\n    - - ''1067''\n      - *79\n    - - ''1066''\n      - *78\n    ''998'':\n    - - ''1079''\n      - *92\n    ''999'':\n    - - ''1083''\n      - *97\n","id":"B40F4386-9504-11E1-93EE-8FC4A89F4671"}','Graph',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5EC697C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"193,1","rank":"193","reading_lexemes":[],"text":"consolation"},"id":"B5EC697C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53D45E6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"134,1","rank":"134","reading_lexemes":[],"text":"consolation"},"id":"B53D45E6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58ADBEE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"53,1","rank":"53","reading_lexemes":[],"text":"puisse"},"id":"B58ADBEE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6814448-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"242,1","rank":"242","reading_lexemes":[],"text":"que"},"id":"B6814448-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D0B240-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"553,1","rank":"553","reading_lexemes":[],"text":"les"},"id":"B5D0B240-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A8E684-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"191,1","rank":"191","reading_lexemes":[],"text":"que"},"id":"B5A8E684-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66769D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"733,2","rank":"733","reading_lexemes":[],"text":"la"},"id":"B66769D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63CB6A2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"644,1","rank":"644","reading_lexemes":[],"text":"dans"},"id":"B63CB6A2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6036F1E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"812,2","rank":"812","reading_lexemes":[],"text":"mots"},"id":"B6036F1E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E467EA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"541,1","rank":"541","reading_lexemes":[],"text":"souhaite"},"id":"B5E467EA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6682E2C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"26,1","rank":"26","reading_lexemes":[],"text":"ne"},"id":"B6682E2C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6451586-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1006,2","rank":"1006","reading_lexemes":[],"text":"mettre"},"id":"B6451586-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E02D7E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"436,1","rank":"436","reading_lexemes":[],"text":"de"},"id":"B5E02D7E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B68D8ED8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Graph","data":"--- &1 !!perl/array:Graph\n- 0\n- 28\n- !!perl/array:Graph::AdjacencyMap::Vertex\n  - 14\n  - 24\n  - 1\n  - ''0'': omega\n    ''1'': T1\n    ''10'': M\n    ''11'': S\n    ''12'': U\n    ''13'': V\n    ''2'': T2\n    ''3'': A\n    ''4'': B\n    ''5'': C\n    ''6'': D\n    ''7'': F\n    ''8'': J\n    ''9'': L\n  - A:\n    - 3\n    - 1\n    - class: extant\n    B:\n    - 4\n    - 1\n    - class: extant\n    C:\n    - 5\n    - 1\n    - class: extant\n    D:\n    - 6\n    - 1\n    - class: extant\n    F:\n    - 7\n    - 1\n    - class: extant\n    J:\n    - 8\n    - 1\n    - class: extant\n    L:\n    - 9\n    - 1\n    - class: extant\n    M:\n    - 10\n    - 1\n    - class: extant\n    S:\n    - 11\n    - 1\n    - class: extant\n    T1:\n    - 1\n    - 1\n    - class: extant\n    T2:\n    - 2\n    - 1\n    - class: extant\n    U:\n    - 12\n    - 1\n    - class: extant\n    V:\n    - 13\n    - 1\n    - class: extant\n    omega:\n    - 0\n    - 1\n    - class: hypothetical\n  - {}\n- !!perl/array:Graph::AdjacencyMap::Light\n  - 14\n  - 128\n  - 2\n  - ''0'':\n    - 1\n    - 2\n    ''1'':\n    - 2\n    - 3\n    ''10'':\n    - 12\n    - 13\n    ''11'':\n    - 12\n    - 0\n    ''12'':\n    - 0\n    - 4\n    ''13'':\n    - 4\n    - 9\n    ''2'':\n    - 3\n    - 8\n    ''3'':\n    - 3\n    - 5\n    ''4'':\n    - 5\n    - 10\n    ''5'':\n    - 5\n    - 7\n    ''6'':\n    - 5\n    - 11\n    ''7'':\n    - 11\n    - 6\n    ''8'':\n    - 3\n    - 12\n    ''9'':\n    - 12\n    - 7\n  - ''0'':\n      ''4'': 12\n    ''1'':\n      ''2'': 0\n    ''11'':\n      ''6'': 7\n    ''12'':\n      ''0'': 11\n      ''13'': 10\n      ''7'': 9\n    ''2'':\n      ''3'': 1\n    ''3'':\n      ''12'': 8\n      ''5'': 3\n      ''8'': 2\n    ''4'':\n      ''9'': 13\n    ''5'':\n      ''10'': 4\n      ''11'': 6\n      ''7'': 5\n  - ''0'':\n      ''12'': 11\n    ''10'':\n      ''5'': 4\n    ''11'':\n      ''5'': 6\n    ''12'':\n      ''3'': 8\n    ''13'':\n      ''12'': 10\n    ''2'':\n      ''1'': 0\n    ''3'':\n      ''2'': 1\n    ''4'':\n      ''0'': 12\n    ''5'':\n      ''3'': 3\n    ''6'':\n      ''11'': 7\n    ''7'':\n      ''12'': 9\n      ''5'': 5\n    ''8'':\n      ''3'': 2\n    ''9'':\n      ''4'': 13\n  - *1\n- name: Stemma\n","id":"B68D8ED8-9504-11E1-93EE-8FC4A89F4671"}','Graph',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DCEFAC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"verb tense","reading_a":"croit","reading_b":"crois","scope":"global","type":"grammatical"},"id":"B4DCEFAC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62FFE1C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"381,1","rank":"381","reading_lexemes":[],"text":"bouches"},"id":"B62FFE1C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4FB1DBA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"433,1","rank":"433","reading_lexemes":[],"text":"sommes"},"id":"B4FB1DBA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B543A3E6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"262,1","rank":"262","reading_lexemes":[],"text":"liberté"},"id":"B543A3E6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F5B8B0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"383,1","rank":"383","reading_lexemes":[],"text":"de"},"id":"B5F5B8B0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50C9C70-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"453,1","rank":"453","reading_lexemes":[],"text":"vie"},"id":"B50C9C70-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B68083FA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"524,1","rank":"524","reading_lexemes":[],"text":"d''une"},"id":"B68083FA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B616A94E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"726,1","rank":"726","reading_lexemes":[],"text":"dans"},"id":"B616A94E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D5423E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"Toi-même","reading_b":"toi-même","scope":"global","type":"orthographic"},"id":"B4D5423E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F9F8EA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"859,2","rank":"859","reading_lexemes":[],"text":"la"},"id":"B4F9F8EA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52D7BCA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"634,2","rank":"634","reading_lexemes":[],"text":"tour"},"id":"B52D7BCA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64E4B9C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"315,1","rank":"315","reading_lexemes":[],"text":"chambre"},"id":"B64E4B9C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6463AA6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"653,2","rank":"653","reading_lexemes":[],"text":"la"},"id":"B6463AA6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B521915C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"945,2","rank":"945","reading_lexemes":[],"text":"liberté"},"id":"B521915C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56F27AA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"830,2","rank":"830","reading_lexemes":[],"text":"absurde"},"id":"B56F27AA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5908080-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"389,1","rank":"389","reading_lexemes":[],"text":"l''amertume"},"id":"B5908080-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5752C7C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"688,2","rank":"688","reading_lexemes":[],"text":"Suisses"},"id":"B5752C7C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B532C53A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"85,1","rank":"85","reading_lexemes":[],"text":"donc"},"id":"B532C53A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B576ABD8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"163,1","rank":"163","reading_lexemes":[],"text":"dans"},"id":"B576ABD8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5055D48-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"46,1","rank":"46","reading_lexemes":[],"text":"point"},"id":"B5055D48-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5764C88-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"359,1","rank":"359","reading_lexemes":[],"text":"mort"},"id":"B5764C88-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6864E0C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"146,1","rank":"146","reading_lexemes":[],"text":"me"},"id":"B6864E0C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D30D6A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"185,1","rank":"185","reading_lexemes":[],"text":"mes"},"id":"B5D30D6A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60F5AA4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"43,1","rank":"43","reading_lexemes":[],"text":"ni"},"id":"B60F5AA4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6101E9E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"192,1","rank":"192","reading_lexemes":[],"text":"la"},"id":"B6101E9E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62F9B7A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1007,2","rank":"1007","reading_lexemes":[],"text":"des"},"id":"B62F9B7A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D0500C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"126,1","rank":"126","reading_lexemes":[],"text":"suis"},"id":"B5D0500C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F79F9A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"276,1","rank":"276","reading_lexemes":[],"text":"un"},"id":"B5F79F9A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B644B410-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"64,1","rank":"64","reading_lexemes":[],"text":"légué"},"id":"B644B410-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5362E50-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"216,1","rank":"216","reading_lexemes":[],"text":"Qu''ai-je"},"id":"B5362E50-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54A786A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"789,2","rank":"789","reading_lexemes":[],"text":"fait"},"id":"B54A786A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F617BA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"202,1","rank":"202","reading_lexemes":[],"text":"vent"},"id":"B5F617BA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A1BBC0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"206,1","rank":"206","reading_lexemes":[],"text":"d''un"},"id":"B5A1BBC0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B680E48A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"211,1","rank":"211","reading_lexemes":[],"text":"de"},"id":"B680E48A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58579BA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"584,1","rank":"584","reading_lexemes":[],"text":"sait"},"id":"B58579BA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D2479A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"317,1","rank":"317","reading_lexemes":[],"text":"chuchottements"},"id":"B5D2479A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B592601C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"709,2","rank":"709","reading_lexemes":[],"text":"la"},"id":"B592601C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53BC162-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"474,1","rank":"474","reading_lexemes":[],"text":"ma"},"id":"B53BC162-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D4337A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"9,1","rank":"9","reading_lexemes":[],"text":"foi"},"id":"B5D4337A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B536EE1C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"995,2","rank":"995","reading_lexemes":[],"text":"quelle"},"id":"B536EE1C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5770CC2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"371,1","rank":"371","reading_lexemes":[],"text":"ma"},"id":"B5770CC2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DEAA94-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"783,1","rank":"783","reading_lexemes":[],"text":"et"},"id":"B5DEAA94-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DDF1CC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"connaît","reading_b":"connait","scope":"global","type":"spelling"},"id":"B4DDF1CC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65674F2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"868,2","rank":"868","reading_lexemes":[],"text":"puis-je"},"id":"B65674F2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58F607E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"156,1","rank":"156","reading_lexemes":[],"text":"le"},"id":"B58F607E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56423FA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"878,2","rank":"878","reading_lexemes":[],"text":"prendre"},"id":"B56423FA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B613907E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"620,2","rank":"620","reading_lexemes":[],"text":"n''existent"},"id":"B613907E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B506DE7A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"637,2","rank":"637","reading_lexemes":[],"text":"effroyable"},"id":"B506DE7A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50AA992-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"661,2","rank":"661","reading_lexemes":[],"text":"le"},"id":"B50AA992-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F55820-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"94,1","rank":"94","reading_lexemes":[],"text":"en"},"id":"B5F55820-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5ED2AEC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"887,1","rank":"887","reading_lexemes":[],"text":"ne"},"id":"B5ED2AEC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52BF4F8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"528,1","rank":"528","reading_lexemes":[],"text":"de"},"id":"B52BF4F8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5018EC0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"751,1","rank":"751","reading_lexemes":[],"text":"sang"},"id":"B5018EC0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BCEB70-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"994,1","rank":"994","reading_lexemes":[],"text":"et"},"id":"B5BCEB70-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DD648C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"verb tense (also spelling)","reading_a":"naies","reading_b":"n''aie","scope":"global","type":"grammatical"},"id":"B4DD648C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57B5142-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"852,2","rank":"852","reading_lexemes":[],"text":"au"},"id":"B57B5142-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6030D3A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"392,1","rank":"392","reading_lexemes":[],"text":"qui"},"id":"B6030D3A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60C4102-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"739,2","rank":"739","reading_lexemes":[],"text":"trouve"},"id":"B60C4102-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64A7AC6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"255,1","rank":"255","reading_lexemes":[],"text":"suis"},"id":"B64A7AC6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6261168-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"399,1","rank":"399","reading_lexemes":[],"text":"à"},"id":"B6261168-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BC2B04-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"316,1","rank":"316","reading_lexemes":[],"text":"de"},"id":"B5BC2B04-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DF97E8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"proi","reading_b":"proie","scope":"global","type":"spelling"},"id":"B4DF97E8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B582134C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"304,1","rank":"304","reading_lexemes":[],"text":"viennent"},"id":"B582134C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5212F78-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"870,2","rank":"870","reading_lexemes":[],"text":"faire"},"id":"B5212F78-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4E06B6E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"clairière","reading_b":"clrière","scope":"global","type":"spelling"},"id":"B4E06B6E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B666A67E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"631,2","rank":"631","reading_lexemes":[],"text":"ressentir"},"id":"B666A67E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64D2686-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"222,1","rank":"222","reading_lexemes":[],"text":"je"},"id":"B64D2686-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62E15C0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"83,1","rank":"83","reading_lexemes":[],"text":"Je"},"id":"B62E15C0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B628BD3C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"135,1","rank":"135","reading_lexemes":[],"text":"que"},"id":"B628BD3C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A099D4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"419,1","rank":"419","reading_lexemes":[],"text":"mes"},"id":"B5A099D4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E9530E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"871,2","rank":"871","reading_lexemes":[],"text":"de"},"id":"B5E9530E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6279786-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"861,2","rank":"861","reading_lexemes":[],"text":"la"},"id":"B6279786-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6618DE2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"819,2","rank":"819","reading_lexemes":[],"text":"donné"},"id":"B6618DE2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63BF28A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"804,2","rank":"804","reading_lexemes":[],"text":"pages"},"id":"B63BF28A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C04B9E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"639,1","rank":"639","reading_lexemes":[],"text":"l''éternité"},"id":"B5C04B9E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DF6CFE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"791,2","rank":"791","reading_lexemes":[],"text":"nous"},"id":"B5DF6CFE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D2AA14-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"548,1","rank":"548","reading_lexemes":[],"text":"qui"},"id":"B5D2AA14-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5636226-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"339,1","rank":"339","reading_lexemes":[],"text":"désir"},"id":"B5636226-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FC8EC4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"133,1","rank":"133","reading_lexemes":[],"text":"de"},"id":"B5FC8EC4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61EB10C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"754,2","rank":"754","reading_lexemes":[],"text":"alors"},"id":"B61EB10C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50B08D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"319,2","rank":"319","reading_lexemes":[],"text":"Je"},"id":"B50B08D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FBCDB8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"676,2","rank":"676","reading_lexemes":[],"text":"est"},"id":"B5FBCDB8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5113E42-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"641,1","rank":"641","reading_lexemes":[],"text":"à"},"id":"B5113E42-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F30250-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"466,1","rank":"466","reading_lexemes":[],"text":"que"},"id":"B5F30250-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B599F58E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"884,2","rank":"884","reading_lexemes":[],"text":"la"},"id":"B599F58E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67CB824-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"59,1","rank":"59","reading_lexemes":[],"text":"ne"},"id":"B67CB824-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B553F0A2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"372,1","rank":"372","reading_lexemes":[],"text":"vie"},"id":"B553F0A2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B539350A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"247,1","rank":"247","reading_lexemes":[],"text":"joie"},"id":"B539350A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4EFB588-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"446,1","rank":"446","reading_lexemes":[],"text":"ce"},"id":"B4EFB588-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B629E3B0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"101,1","rank":"101","reading_lexemes":[],"text":"le"},"id":"B629E3B0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D743A8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"243,1","rank":"243","reading_lexemes":[],"text":"je"},"id":"B5D743A8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52B924C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"867,2","rank":"867","reading_lexemes":[],"text":"que"},"id":"B52B924C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B572296E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"404,1","rank":"404","reading_lexemes":[],"text":"l''orgie"},"id":"B572296E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B0827C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"567,1","rank":"567","reading_lexemes":[],"text":"y"},"id":"B5B0827C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6336DCC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"959,2","rank":"959","reading_lexemes":[],"text":"qui"},"id":"B6336DCC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58E3FDC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"862,2","rank":"862","reading_lexemes":[],"text":"gloire"},"id":"B58E3FDC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54402D2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"582,1","rank":"582","reading_lexemes":[],"text":"Personne"},"id":"B54402D2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B598C5C4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"837,3","rank":"837","reading_lexemes":[],"text":"seule"},"id":"B598C5C4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63ABAA0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"522,1","rank":"522","reading_lexemes":[],"text":"que"},"id":"B63ABAA0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BC8C98-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"903,1","rank":"903","reading_lexemes":[],"text":"touché"},"id":"B5BC8C98-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B679AB98-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"659,2","rank":"659","reading_lexemes":[],"text":"devient"},"id":"B679AB98-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B510DF10-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"737,3","rank":"737","reading_lexemes":[],"text":"Elle"},"id":"B510DF10-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55630D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"974,2","rank":"974","reading_lexemes":[],"text":"Lois"},"id":"B55630D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FAA91A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"493,3","rank":"493","reading_lexemes":[],"text":"Perds"},"id":"B5FAA91A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DDAC94-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"Comme","reading_b":"comme","scope":"global","type":"orthographic"},"id":"B4DDAC94-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6086BC2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"505,1","rank":"505","reading_lexemes":[],"text":"fausse"},"id":"B6086BC2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60EF956-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"267,1","rank":"267","reading_lexemes":[],"text":"par"},"id":"B60EF956-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DBFD94-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"175,1","rank":"175","reading_lexemes":[],"text":"une"},"id":"B5DBFD94-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66955C2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"508,1","rank":"508","reading_lexemes":[],"text":"crie"},"id":"B66955C2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B540A588-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"205,3","rank":"205","reading_lexemes":[],"text":"cîme"},"id":"B540A588-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B609939E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"39,2","rank":"39","reading_lexemes":[],"text":"Je n''ai"},"id":"B609939E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56EC814-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"682,2","rank":"682","reading_lexemes":[],"text":"misérable"},"id":"B56EC814-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B607FE80-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1011,2","rank":"1011","reading_lexemes":[],"text":"devenir"},"id":"B607FE80-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6585AEC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"954,2","rank":"954","reading_lexemes":[],"text":"clairière"},"id":"B6585AEC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DF0B9C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"431,1","rank":"431","reading_lexemes":[],"text":"nous"},"id":"B5DF0B9C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B649B5E6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"650,2","rank":"650","reading_lexemes":[],"text":"mer"},"id":"B649B5E6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DFCEEC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"897,2","rank":"897","reading_lexemes":[],"text":"de"},"id":"B5DFCEEC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A8861C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"380,1","rank":"380","reading_lexemes":[],"text":"les"},"id":"B5A8861C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B618952E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"517,1","rank":"517","reading_lexemes":[],"text":"deux"},"id":"B618952E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B514456A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"658,2","rank":"658","reading_lexemes":[],"text":"Que"},"id":"B514456A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E1C206-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"322,1","rank":"322","reading_lexemes":[],"text":"plaisir"},"id":"B5E1C206-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5AD20DC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"382,2","rank":"382","reading_lexemes":[],"text":"avides"},"id":"B5AD20DC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59B14D2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"744,2","rank":"744","reading_lexemes":[],"text":"neige"},"id":"B59B14D2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B680220C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"367,1","rank":"367","reading_lexemes":[],"text":"bien"},"id":"B680220C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B592BECC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"127,1","rank":"127","reading_lexemes":[],"text":"bien"},"id":"B592BECC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4FF4822-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"732,1","rank":"732","reading_lexemes":[],"text":"dans"},"id":"B4FF4822-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F44A9E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"293,1","rank":"293","reading_lexemes":[],"text":"granite"},"id":"B4F44A9E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64DE922-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"746,2","rank":"746","reading_lexemes":[],"text":"la"},"id":"B64DE922-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55DB4C0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"607,1","rank":"607","reading_lexemes":[],"text":"les"},"id":"B55DB4C0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A21AAC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"412,1","rank":"412","reading_lexemes":[],"text":"cela"},"id":"B5A21AAC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F8D5DC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"454,1","rank":"454","reading_lexemes":[],"text":"mais"},"id":"B4F8D5DC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51BE43C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"136,2","rank":"136","reading_lexemes":[],"text":"connait"},"id":"B51BE43C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52A7074-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1008,2","rank":"1008","reading_lexemes":[],"text":"millions"},"id":"B52A7074-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6598304-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"328,1","rank":"328","reading_lexemes":[],"text":"talents"},"id":"B6598304-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B7AE6C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"332,1","rank":"332","reading_lexemes":[],"text":"usage"},"id":"B5B7AE6C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D8BF18-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"tranche","reading_b":"Tranche","scope":"global","type":"orthographic"},"id":"B4D8BF18-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B501EFFA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"712,2","rank":"712","reading_lexemes":[],"text":"cerner"},"id":"B501EFFA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B68AEF48-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"497,1","rank":"497","reading_lexemes":[],"text":"jour"},"id":"B68AEF48-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B613F262-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"778,1","rank":"778","reading_lexemes":[],"text":"plus"},"id":"B613F262-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52252D6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"780,1","rank":"780","reading_lexemes":[],"text":"dans"},"id":"B52252D6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D6B812-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"gender","reading_a":"quel","reading_b":"quelle","scope":"global","type":"grammatical"},"id":"B4D6B812-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BEC972-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"768,2","rank":"768","reading_lexemes":[],"text":"fait"},"id":"B5BEC972-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63D17DC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"455,1","rank":"455","reading_lexemes":[],"text":"exactement"},"id":"B63D17DC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F87600-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"669,2","rank":"669","reading_lexemes":[],"text":"le"},"id":"B4F87600-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6794928-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"374,1","rank":"374","reading_lexemes":[],"text":"par"},"id":"B6794928-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E8F35A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"280,1","rank":"280","reading_lexemes":[],"text":"de"},"id":"B5E8F35A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4EDD3D0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"456,1","rank":"456","reading_lexemes":[],"text":"le"},"id":"B4EDD3D0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B668F1EA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"442,1","rank":"442","reading_lexemes":[],"text":"Ce"},"id":"B668F1EA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62980FA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"320,1","rank":"320","reading_lexemes":[],"text":"suis"},"id":"B62980FA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54104CE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"214,1","rank":"214","reading_lexemes":[],"text":"ma"},"id":"B54104CE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65BCD9E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"403,1","rank":"403","reading_lexemes":[],"text":"entre"},"id":"B65BCD9E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FDB614-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"556,2","rank":"556","reading_lexemes":[],"text":"défavorables"},"id":"B5FDB614-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54044B2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"498,1","rank":"498","reading_lexemes":[],"text":"n''est"},"id":"B54044B2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55A5032-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"525,1","rank":"525","reading_lexemes":[],"text":"consolation"},"id":"B55A5032-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6267298-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"667,2","rank":"667","reading_lexemes":[],"text":"consolation"},"id":"B6267298-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B611A502-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"257,1","rank":"257","reading_lexemes":[],"text":"un"},"id":"B611A502-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B632AB58-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"221,1","rank":"221","reading_lexemes":[],"text":"Puisque"},"id":"B632AB58-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D5BA06-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"894,2","rank":"894","reading_lexemes":[],"text":"pas"},"id":"B5D5BA06-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D3D088-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"604,2","rank":"604","reading_lexemes":[],"text":"par"},"id":"B5D3D088-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B591A014-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1009,2","rank":"1009","reading_lexemes":[],"text":"d''années"},"id":"B591A014-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58B9EA8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"723,2","rank":"723","reading_lexemes":[],"text":"pointus"},"id":"B58B9EA8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DB3A44-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"318,1","rank":"318","reading_lexemes":[],"text":"au deu dieu"},"id":"B5DB3A44-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D81B4E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"elle","reading_b":"Elle","scope":"global","type":"orthographic"},"id":"B4D81B4E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55C3258-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"96,1","rank":"96","reading_lexemes":[],"text":"choses"},"id":"B55C3258-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B624880C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"576,1","rank":"576","reading_lexemes":[],"text":"où"},"id":"B624880C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59D32B2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"614,2","rank":"614","reading_lexemes":[],"text":"voyage"},"id":"B59D32B2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B601E77A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"72,1","rank":"72","reading_lexemes":[],"text":"ruses"},"id":"B601E77A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B664429E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"988,2","rank":"988","reading_lexemes":[],"text":"fait"},"id":"B664429E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B517B574-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"714,2","rank":"714","reading_lexemes":[],"text":"se"},"id":"B517B574-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65290DA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"767,2","rank":"767","reading_lexemes":[],"text":"le"},"id":"B65290DA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B2C9E2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"601,2","rank":"601","reading_lexemes":[],"text":"divisant"},"id":"B5B2C9E2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B577D2C4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"851,2","rank":"851","reading_lexemes":[],"text":"l''offre"},"id":"B577D2C4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65428F0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"28,1","rank":"28","reading_lexemes":[],"text":"un"},"id":"B65428F0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55D56E2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"338,1","rank":"338","reading_lexemes":[],"text":"ton"},"id":"B55D56E2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61DECB8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"591,2","rank":"591","reading_lexemes":[],"text":"vie"},"id":"B61DECB8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5483230-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"632,3","rank":"632","reading_lexemes":[],"text":"tout"},"id":"B5483230-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54ADA30-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"543,1","rank":"543","reading_lexemes":[],"text":"mauvais"},"id":"B54ADA30-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5AFBF86-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"581,1","rank":"581","reading_lexemes":[],"text":"nécessité"},"id":"B5AFBF86-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F3C578-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"781,2","rank":"781","reading_lexemes":[],"text":"la"},"id":"B5F3C578-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B619B81E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"523,1","rank":"523","reading_lexemes":[],"text":"faire"},"id":"B619B81E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64C02D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"91,3","rank":"91","reading_lexemes":[],"text":"cle"},"id":"B64C02D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A5788C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"34,1","rank":"34","reading_lexemes":[],"text":"certaine"},"id":"B5A5788C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C0AB98-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"788,1","rank":"788","reading_lexemes":[],"text":"ne"},"id":"B5C0AB98-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6711014-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"30,1","rank":"30","reading_lexemes":[],"text":"absurde"},"id":"B6711014-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51626C8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"241,1","rank":"241","reading_lexemes":[],"text":"mots"},"id":"B51626C8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67443BA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"974,3","rank":"974","reading_lexemes":[],"text":"lois"},"id":"B67443BA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6132FE4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"413,1","rank":"413","reading_lexemes":[],"text":"subire"},"id":"B6132FE4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6522DB6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"687,1","rank":"687","reading_lexemes":[],"text":"les"},"id":"B6522DB6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67C55DC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"60,1","rank":"60","reading_lexemes":[],"text":"m''a"},"id":"B67C55DC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66A1944-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":null,"is_end":null,"is_lacuna":null,"is_ph":null,"is_start":"1","join_next":null,"join_prior":null,"language":"Default","public::id":"#START#","rank":0,"reading_lexemes":[],"text":"#START#"},"id":"B66A1944-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5611746-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"259,1","rank":"259","reading_lexemes":[],"text":"soudain"},"id":"B5611746-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A2DC30-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"833,2","rank":"833","reading_lexemes":[],"text":"je"},"id":"B5A2DC30-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4FA5B0A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"430,1","rank":"430","reading_lexemes":[],"text":"puisque"},"id":"B4FA5B0A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6561304-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"398,1","rank":"398","reading_lexemes":[],"text":"tiens"},"id":"B6561304-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B508C06E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"743,2","rank":"743","reading_lexemes":[],"text":"la"},"id":"B508C06E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C5297A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"826,2","rank":"826","reading_lexemes":[],"text":"ma"},"id":"B5C5297A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55CF29C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"309,2","rank":"309","reading_lexemes":[],"text":"être"},"id":"B55CF29C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53E66D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"144,1","rank":"144","reading_lexemes":[],"text":"ce"},"id":"B53E66D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B688A8AA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"305,1","rank":"305","reading_lexemes":[],"text":"à"},"id":"B688A8AA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67B3030-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"373,1","rank":"373","reading_lexemes":[],"text":"menacée"},"id":"B67B3030-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BB0CBA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"648,2","rank":"648","reading_lexemes":[],"text":"de"},"id":"B5BB0CBA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65AA77A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"164,1","rank":"164","reading_lexemes":[],"text":"la"},"id":"B65AA77A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5623568-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"411,1","rank":"411","reading_lexemes":[],"text":"pour"},"id":"B5623568-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6170B82-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"889,2","rank":"889","reading_lexemes":[],"text":"que"},"id":"B6170B82-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51D047A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"816,2","rank":"816","reading_lexemes":[],"text":"mon"},"id":"B51D047A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F98602-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"324,1","rank":"324","reading_lexemes":[],"text":"toutes"},"id":"B5F98602-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5784308-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"298,1","rank":"298","reading_lexemes":[],"text":"y"},"id":"B5784308-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57CCE78-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"490,1","rank":"490","reading_lexemes":[],"text":"désespoir"},"id":"B57CCE78-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E89360-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"823,1","rank":"823","reading_lexemes":[],"text":"à"},"id":"B5E89360-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6067A10-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"892,2","rank":"892","reading_lexemes":[],"text":"je"},"id":"B6067A10-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B683F7D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"40,1","rank":"40","reading_lexemes":[],"text":"reçu"},"id":"B683F7D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57BB150-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"140,1","rank":"140","reading_lexemes":[],"text":"impossible"},"id":"B57BB150-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CE6CEC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"924,2","rank":"924","reading_lexemes":[],"text":"suis"},"id":"B5CE6CEC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D4278C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"n''enrichit","reading_b":"nenrichi","scope":"global","type":"spelling"},"id":"B4D4278C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66519E4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"855,2","rank":"855","reading_lexemes":[],"text":"retour"},"id":"B66519E4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F36632-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"672,2","rank":"672","reading_lexemes":[],"text":"rien"},"id":"B5F36632-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5887854-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"187,1","rank":"187","reading_lexemes":[],"text":"Et"},"id":"B5887854-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B521F21E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"937,2","rank":"937","reading_lexemes":[],"text":"cinq"},"id":"B521F21E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DCC3B4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"254,1","rank":"254","reading_lexemes":[],"text":"je"},"id":"B5DCC3B4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B562F606-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"326,1","rank":"326","reading_lexemes":[],"text":"suis"},"id":"B562F606-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DE7E26-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"nest","reading_b":"n''est","scope":"global","type":"spelling"},"id":"B4DE7E26-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66CC662-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"47,1","rank":"47","reading_lexemes":[],"text":"fixe"},"id":"B66CC662-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BF2A2A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"376,1","rank":"376","reading_lexemes":[],"text":"périls"},"id":"B5BF2A2A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FC2E66-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"722,2","rank":"722","reading_lexemes":[],"text":"objets"},"id":"B5FC2E66-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5901F46-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"569,1","rank":"569","reading_lexemes":[],"text":"Personne"},"id":"B5901F46-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F0D634-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"350,2","rank":"350","reading_lexemes":[],"text":"méprise"},"id":"B4F0D634-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5156882-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"99,2","rank":"99","reading_lexemes":[],"text":"minspire"},"id":"B5156882-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F7FF58-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"759,2","rank":"759","reading_lexemes":[],"text":"sécurité"},"id":"B5F7FF58-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66D9326-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"996,2","rank":"996","reading_lexemes":[],"text":"impitoyable"},"id":"B66D9326-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BBCC54-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"970,2","rank":"970","reading_lexemes":[],"text":"pas"},"id":"B5BBCC54-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5809170-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"111,1","rank":"111","reading_lexemes":[],"text":"si"},"id":"B5809170-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60BDF50-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"609,2","rank":"609","reading_lexemes":[],"text":"par"},"id":"B60BDF50-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64953BC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"500,2","rank":"500","reading_lexemes":[],"text":"trève"},"id":"B64953BC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B518DC1A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"118,1","rank":"118","reading_lexemes":[],"text":"de"},"id":"B518DC1A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CDAB4A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"839,2","rank":"839","reading_lexemes":[],"text":"la"},"id":"B5CDAB4A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D4F6AC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"50,1","rank":"50","reading_lexemes":[],"text":"terre"},"id":"B5D4F6AC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66E56E4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"342,1","rank":"342","reading_lexemes":[],"text":"seuls"},"id":"B66E56E4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E83230-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"741,2","rank":"741","reading_lexemes":[],"text":"l''eau"},"id":"B5E83230-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67F610A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"622,2","rank":"622","reading_lexemes":[],"text":"Je"},"id":"B67F610A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65095E6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"278,1","rank":"278","reading_lexemes":[],"text":"qui"},"id":"B65095E6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60121C8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"707,2","rank":"707","reading_lexemes":[],"text":"sentir"},"id":"B60121C8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F86060-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"872,2","rank":"872","reading_lexemes":[],"text":"cet"},"id":"B5F86060-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63A5880-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"499,1","rank":"499","reading_lexemes":[],"text":"qu''une"},"id":"B63A5880-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5049944-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"961,2","rank":"961","reading_lexemes":[],"text":"Vis"},"id":"B5049944-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51E2904-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"693,2","rank":"693","reading_lexemes":[],"text":"devant"},"id":"B51E2904-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59AB3B6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"418,1","rank":"418","reading_lexemes":[],"text":"de"},"id":"B59AB3B6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4E9AB52-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"841,2","rank":"841","reading_lexemes":[],"text":"je"},"id":"B4E9AB52-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B269C0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"740,1","rank":"740","reading_lexemes":[],"text":"dans"},"id":"B5B269C0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C8FEE2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"76,2","rank":"76","reading_lexemes":[],"text":"rationaliste"},"id":"B5C8FEE2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4EB914C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"530,1","rank":"530","reading_lexemes":[],"text":"d''esprit"},"id":"B4EB914C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57EAD9C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"219,2","rank":"219","reading_lexemes":[],"text":"mes"},"id":"B57EAD9C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B516E996-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"198,1","rank":"198","reading_lexemes":[],"text":"temps"},"id":"B516E996-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B631E7C2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"780,3","rank":"780","reading_lexemes":[],"text":"de"},"id":"B631E7C2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65034DE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"388,1","rank":"388","reading_lexemes":[],"text":"par"},"id":"B65034DE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5465320-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"825,2","rank":"825","reading_lexemes":[],"text":"que"},"id":"B5465320-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5AAE13C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"809,2","rank":"809","reading_lexemes":[],"text":"belles"},"id":"B5AAE13C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6631A7C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"536,1","rank":"536","reading_lexemes":[],"text":"qui"},"id":"B6631A7C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64B4000-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"292,1","rank":"292","reading_lexemes":[],"text":"de"},"id":"B64B4000-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E5EC82-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"333,1","rank":"333","reading_lexemes":[],"text":"que"},"id":"B5E5EC82-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50E96CE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"199,1","rank":"199","reading_lexemes":[],"text":"d''un"},"id":"B50E96CE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55FF65E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"115,1","rank":"115","reading_lexemes":[],"text":"lui"},"id":"B55FF65E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F0979A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"258,1","rank":"258","reading_lexemes":[],"text":"aperçu"},"id":"B5F0979A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57D2F80-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"124,1","rank":"124","reading_lexemes":[],"text":"car"},"id":"B57D2F80-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51B82E4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"291,1","rank":"291","reading_lexemes":[],"text":"récif"},"id":"B51B82E4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B541C576-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"555,1","rank":"555","reading_lexemes":[],"text":"étaient"},"id":"B541C576-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4FE238E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"318,2","rank":"318","reading_lexemes":[],"text":"odieux"},"id":"B4FE238E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63DDBB8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"429,1","rank":"429","reading_lexemes":[],"text":"que"},"id":"B63DDBB8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B9ED12-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"785,2","rank":"785","reading_lexemes":[],"text":"misérable"},"id":"B5B9ED12-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62C2D14-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"458,1","rank":"458","reading_lexemes":[],"text":"d''une"},"id":"B62C2D14-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B571C88E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"209,1","rank":"209","reading_lexemes":[],"text":"me"},"id":"B571C88E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51323E2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"886,2","rank":"886","reading_lexemes":[],"text":"je"},"id":"B51323E2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5EE4FF8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"245,2","rank":"245","reading_lexemes":[],"text":"de"},"id":"B5EE4FF8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64D875C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"832,2","rank":"832","reading_lexemes":[],"text":"que"},"id":"B64D875C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CECD9A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"365,1","rank":"365","reading_lexemes":[],"text":"rasoir"},"id":"B5CECD9A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B593DE88-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"919,1","rank":"919","reading_lexemes":[],"text":"pour"},"id":"B593DE88-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6AA46FE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Witness","data":{"language":"Default","sigil":"B","sourcetype":"collation","text":["Notre besoin de consolation est impossible à","rassasier","Stig Dagerman","Je","suis","dépourvu","de","foi","et","ne","puis","donc","être","heureux","car","un","homme","qui","risque","de","craindre","que","sa","vie","ne","soit","errance","absurde","vers","une","mort","certaine","ne","peut","être","heureux","Je n''ai","reçu","en","héritage","ni","dieu","ni","point","fixe","sur","la","terre","d''où","je","puisse","attirer","l''attention","d''un","dieu","On","ne","m''a","pas","non","plus","légué","la","fureur","bien","déguisée","du","sceptique","les","ruses","de","Sioux","du","rationnaliste","ou","la","candeur","ardente","de","l''athée","Je","n''ose","donc","jeter","la","pierre","ni","à","celle","qui","croit","des","choses","qui","ne","m''inspirent","que","le","doute","ni","à","celui","qui","cultive","son","doute","comme","si","celui-ci","n''était","pas","lui","aussi","entouré","de","ténèbres","Cette","pierre","m''atteindrait","moi-même","car","je","suis","bien","certain","d''une","chose","le","besoin","de","consolation","que","connaît","l''être","humain","est","impossible","à","rassasier","En","ce","qui","me","concerne","je","traque","la","consolation","comme","le","chasseur","traque","le","gibier","Partout","où","je","crois","l''apercevoir","dans","la","forêt","je","tire","Souvent","je","n''atteins","que","le","vide","mais","une","fois","de","temps","en","temps","une","proie","tombe","à","mes","pieds","Et","comme","je","sais","que","la","consolation","ne","dure","que","le","temps","d''un","souffle","de","vent","dans","la","cîme","d''un","arbre","je","me","dépêche","de","m''emparer","de","ma","victime","Qu''ai-je","alors","entre","les","bras","Puisque","je","suis","solitaire","une","femme","aimée","ou","un","compagnon","de","voyage","malheureux","Puisque","je","suis","poète","un","arc","de","mots","que","je","ressens","de","la","joie","et","de","l''effroi","à","bander","Puisque","je","suis","prisonnier","un","aperçu","soudain","de","la","liberté","Puisque","je","suis","menacé","par","la","mort","un","animal","vivant","et","bien","chaud","un","cœur","qui","bat","de","façon","sarcastique","Puisque","je","suis","menacé","par","la","mer","un","récif","de","granit","bien","dur","Mais","il","y","a","aussi","des","consolations","qui","viennent","à","moi","sans","y","être","conviées","et","qui","remplissent","ma","chambre","de","chuchotements","odieux","Je","suis","ton","plaisir","aime-les","tous","Je","suis","ton","talent","fais-en","aussi","mauvais","usage","que","de","Toi-même","Je","suis","ton","désir","de","jouissance","seuls","vivent","les","gourmets","Je","suis","ta","solitude","méprise","les","hommes","Je","suis","ton","aspiration","à","la","mort","alors","tranche","Le","fil","du","rasoir","est","bien","étroit","Je","vois","ma","vie","menacée","par","deux","périls","d''un","côté","par","les","bouches","arides","de","la","gourmandise","de","l''autre","par","l''amertume","de","l''avarice","qui","se","nourrit","d''elle-même","Mais","je","tiens","à","refuser","de","choisir","entre","l''orgie","et","l''ascèse","même","si","je","dois","pour","cela","subir","le","supplice","du","grill","de","mes","désirs","Pour","moi","il","ne","suffit","pas","de","savoir","que","puisque","nous","ne","sommes","pas","libres","de","nos","actes","tout","est","excusable","Ce","que","je","cherche","ce","n''est","pas","une","excuse","à","ma","vie","mais","exactement","le","contraire","d''une","excuse","le","pardon","L''idée","me","vient","finalement","que","toute","consolation","ne","prenant","pas","en","compte","ma","liberté","est","trompeuse","qu''elle","n''est","que","l''image","réfléchie","de","mon","désespoir","En","effet","lorsque","mon","désespoir","me","dit","Perds","confiance","car","chaque","jour","n''est","qu''une","trève","entre","deux","nuits","la","fausse","consolation","me","crie","Espère","car","chaque","nuit","n''est","qu''une","trève","entre","deux","jours","Mais","l''humanité","n''a","que","faire","d''une","consolation","en","forme","de","mot","d''esprit","elle","a","besoin","d''une","consolation","qui","illumine","Et","celui","qui","souhaite","devenir","mauvais","c''est-à-dire","devenir","un","homme","qui","agisse","comme","si","toutes","les","actions","étaient","défendables","doit","du","moins","avoir","la","bonté","de","le","remarquer","lorsqu''il","y","parvient","Personne","ne","peut","énumérer","tous","les","cas","où","la","consolation","est","une","nécessité","Personne","ne","sait","quand","tombera","le","crépuscule","et","la","vie","n''est","pas","un","problème","qui","puisse","être","résolu","en","divisant","la","lumière","par","l''obscurité","et","les","jours","par","les","nuits","c''est","un","voyage","imprévisible","entre","des","lieux","qui","n''existent","pas","Je","peux","par","exemple","marcher","sur","le","rivage","et","ressentir","tour","à","tour","le","défi","effroyable","que","l''éternité","lance","à","mon","existence","dans","le","mouvement","perpétuel","de","la","mer","et","dans","la","fuite","perpétuelle","du","vent","Que","devient","alors","le","temps","si","ce","n''est","une","consolation","pour","le","fait","que","rien","de","ce","qui","est","humain","ne","dure","et","quelle","misérable","consolation","qui","n''enrichit","que","les","Suisses","Je","peux","rester","assis","devant","un","feu","dans","la","pièce","la","moins","exposée","de","toutes","au","danger","et","sentir","soudain","la","mort","me","cerner","Elle","se","trouve","dans","le","feu","dans","tous","les","objets","pointus","qui","m''entourent","dans","le","poids","du","toit","et","dans","la","masse","des","murs","elle","se","trouve","dans","l''eau","dans","la","neige","dans","la","chaleur","et","dans","mon","sang","Que","devient","alors","le","sentiment","humain","de","sécurité","si","ce","n''est","une","consolation","pour","le","fait","que","la","mort","est","ce","qu''il","y","a","de","plus","proche","dans","la","vie","et","quelle","misérable","consolation","qui","ne","fait","que","nous","rappeler","ce","qu''elle","veut","nous","faire","oublier","Je","peux","remplir","toutes","mes","pages","blanches","avec","les","plus","belles","combinaisons","de","mots","que","puisse","simaginer","mon","cerveau","Etant","donné","que","je","cherche","à","m''assurer","que","ma","vie","n''est","pas","absurde","et","que","je","ne","suis","pas","seul","sur","la","terre","je","rassemble","tous","ces","mots","en","un","livre","et","je","l''offre","au","monde","En","retour","celui-ci","me","donne","la","richesse","la","gloire","et","le","silence","Mais","que","puis-je","bien","faire","de","cet","argent","et","quel","plaisir","puis-je","prendre","à","contribuer","au","progrès","de","la","littérature","je","ne","désire","que","ce","que","je","n''aurai","pas","confirmation","que","mes","mots","ont","touché","le","cœur","du","monde","Que","devient","alors","mon","talent","si","ce","n''est","une","consolation","pour","le","fait","que","je","suis","seul","mais","quelle","épouvantable","consolation","qui","me","fait","simplement","ressentir","ma","solitude","cinq","fois","plus","fort","Je","peux","voir","la","liberté","incarnée","dans","un","animal","qui","traverse","une","clairière","et","entendre","une","voix","qui","chuchote","Vis","simplement","prends","ce","que","tu","désires","et","n''aie","pas","peur","des","lois","Mais","qu''est-ce","que","ce","bon","conseil","si","ce","n''est","une","consolation","pour","le","fait","que","la","liberté","n''existe","pas","et","quelle","impitoyable","consolation","pour","celui","qui","s''avise","que","le","lézard","doit","mettre","des","millions","d''années","pour","devenir","un","être humain"],"tradition":{"$ref":"load-test.data"}},"id":"B6AA46FE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Witness',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B639938C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"230,1","rank":"230","reading_lexemes":[],"text":"compagnon"},"id":"B639938C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5881936-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"807,1","rank":"807","reading_lexemes":[],"text":"les"},"id":"B5881936-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60D0E52-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"2,1","rank":"2","reading_lexemes":[],"text":"rassasier"},"id":"B60D0E52-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60CA35E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"973,3","rank":"973","reading_lexemes":[],"text":"des"},"id":"B60CA35E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F3E7F2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"341,2","rank":"341","reading_lexemes":[],"text":"jouissance"},"id":"B4F3E7F2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B638017A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"612,2","rank":"612","reading_lexemes":[],"text":"c''est"},"id":"B638017A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B637A004-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"708,2","rank":"708","reading_lexemes":[],"text":"soudain"},"id":"B637A004-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B519FE1A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"936,2","rank":"936","reading_lexemes":[],"text":"solitude"},"id":"B519FE1A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B608D256-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"853,2","rank":"853","reading_lexemes":[],"text":"monde"},"id":"B608D256-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6324AD2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"274,1","rank":"274","reading_lexemes":[],"text":"bien"},"id":"B6324AD2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A7C65A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"753,2","rank":"753","reading_lexemes":[],"text":"devient"},"id":"B5A7C65A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B596E538-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"520,1","rank":"520","reading_lexemes":[],"text":"l''humanité"},"id":"B596E538-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52815C2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"651,1","rank":"651","reading_lexemes":[],"text":"et"},"id":"B52815C2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66BA12E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"586,2","rank":"586","reading_lexemes":[],"text":"tombera"},"id":"B66BA12E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54BCDF0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"526,1","rank":"526","reading_lexemes":[],"text":"en"},"id":"B54BCDF0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63863C2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"489,1","rank":"489","reading_lexemes":[],"text":"mon"},"id":"B63863C2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5827602-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"854,2","rank":"854","reading_lexemes":[],"text":"En"},"id":"B5827602-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CD4858-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1012,2","rank":"1012","reading_lexemes":[],"text":"un"},"id":"B5CD4858-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B647C998-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"190,1","rank":"190","reading_lexemes":[],"text":"sais"},"id":"B647C998-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CFF062-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"948,2","rank":"948","reading_lexemes":[],"text":"un"},"id":"B5CFF062-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64706AC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"58,1","rank":"58","reading_lexemes":[],"text":"On"},"id":"B64706AC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53143B8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"459,2","rank":"459","reading_lexemes":[],"text":"excuse à ma vie mais exactement le contraire dune excuse"},"id":"B53143B8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50DCC9E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"361,1","rank":"361","reading_lexemes":[],"text":"tranche"},"id":"B50DCC9E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B524363C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"642,2","rank":"642","reading_lexemes":[],"text":"mon"},"id":"B524363C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52EFF22-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"486,1","rank":"486","reading_lexemes":[],"text":"En"},"id":"B52EFF22-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5174A12-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"757,2","rank":"757","reading_lexemes":[],"text":"humain"},"id":"B5174A12-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B503148E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"864,2","rank":"864","reading_lexemes":[],"text":"le"},"id":"B503148E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65D50EC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"11,1","rank":"11","reading_lexemes":[],"text":"ne"},"id":"B65D50EC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5350B2E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"7,1","rank":"7","reading_lexemes":[],"text":"dépourvu"},"id":"B5350B2E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6C00B1A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Witness","data":{"language":"Default","sigil":"D","sourcetype":"collation","text":["Notre besoin de consolation est impossible à","rassasier","de","Stig Dagerman","Je","suis","dépourvu","de","foi","et","ne","puis","donc","être","heureux","car","un","homme","qui","risque","de","craindre","que","sa","vie","ne","soit","errance","absurde","vers","une","mort","certaine","ne","peut","être","heureux","Jai","reçu","en","héritage","ni","dieu","ni","point","fixe","sur","la","terre","d''où","je","puisse","attirer","l''attention","d''un","dieu","On","ne","m''a","pas","non","plus","légué","la","fureur","bien","déguisée","du","sceptique","les","ruses","des","Sioux","du","rationaliste","ou","la","candeur","ardente","de","l''athée","Je","n''ose","donc","jeter","la","pierre","ni","à","celui","qui","croit","des","choses","qui","ne","m''inspirent","que","le","doute","ni","à","celui","qui","cultive","son","doute","comme","si","celui-ci","n''était","pas","lui","aussi","entouré","de","ténèbres","Cette","pierre","m''atteindrait","moi-même","car","je","suis","bien","certain","d''une","chose","le","besoin","de","consolation","que","connaît","l''être","humain","est","impossible","à","rassasier","En","ce","qui","me","concerne","je","traque","la","consolation","comme","le","chasseur","traque","le","gibier","Partout","où","je","crois","l''apercevoir","dans","la","forêt","je","tire","Souvent","je","n''atteins","que","le","vide","mais","une","fois","de","temps","en","temps","une","proie","tombe","à","mes","pieds","Et","comme","je","sais","que","la","consolation","ne","dure","que","le","temps","d''un","souffle","de","vent","dans","la","cime","d''un","arbre","je","me","dépêche","de","m''emparer","de","ma","victime","Qu''ai-je","alors","entre","mes","bras","Puisque","je","suis","solitaire","une","femme","aimée","ou","un","compagnon","de","voyage","malheureux","Puisque","je","suis","poète","un","arc","de","mots","que","je","ressens","de","la","joie","et","de","l''effroi","à","bander","Puisque","je","suis","prisonnier","un","aperçu","soudain","de","la","liberté","Puisque","je","suis","menacé","par","la","mort","un","animal","vivant","et","bien","chaud","un","cœur","qui","bat","de","façon","sarcastique","Puisque","je","suis","menacé","par","la","mer","un","récif","de","granit","bien","dur","Mais","il","y","a","aussi","des","consolations","qui","viennent","à","moi","sans","y","être","conviées","et","qui","remplissent","ma","chambre","de","chuchotements","odieux","je","suis","ton","plaisir","aime-les","tous","Je","suis","ton","talent","fais-en","aussi","mauvais","usage","que","de","toi-même","Je","suis","ton","désir","de","jouissance","seuls","vivent","les","gourmets","Je","suis","ta","solitude","méprise","les","hommes","Je","suis","ton","aspiration","à","la","mort","alors","tranche","Le","fil","du","rasoir","est","bien","étroit","Je","vois","ma","vie","menacée","par","deux","périls","d''un","côté","par","les","bouches","avides","de","la","gourmandise","de","l''autre","par","l''amertume","de","l''avarice","qui","se","nourrit","d''elle-même","Mais","je","tiens","à","refuser","de","choisir","entre","l''orgie","et","l''ascèse","même","si","je","dois","pour","cela","subir","le","supplice","du","gril","de","mes","désirs","Pour","moi","il","ne","suffit","pas","de","savoir","que","puisque","nous","ne","sommes","pas","libres","de","nos","actes","tout","est","excusable","Ce","que","je","cherche","ce","n''est","pas","une","excuse","à","ma","vie","mais","exactement","le","contraire","d''une","excuse","le","pardon","L''idée","me","vient","finalement","que","toute","consolation","ne","prenant","pas","en","compte","ma","liberté","est","trompeuse","qu''elle","n''est","que","l''image","réfléchie","de","mon","désespoir","En","effet","lorsque","mon","désespoir","me","dit","Perds","confiance","car","chaque","jour","n''est","qu''une","trève","entre","deux","nuits","la","fausse","consolation","me","crie","Espère","car","chaque","nuit","n''est","qu''une","trève","entre","deux","jours","Mais","l''humanité","n''a","que","faire","d''une","consolation","en","forme","de","mot","d''esprit","elle","a","besoin","d''une","consolation","qui","illumine","Et","celui","qui","souhaite","devenir","mauvais","c''est-à-dire","devenir","un","homme","qui","agisse","comme","si","toutes","les","actions","étaient","défendables","doit","au","moins","avoir","la","bonté","de","le","remarquer","lorsqu''il","y","parvient","Personne","ne","peut","énumérer","tous","les","cas","où","la","consolation","est","une","nécessité","Personne","ne","sait","quand","tombera","le","crépuscule","et","la","vie","n''est","pas","un","problème","qui","puisse","être","résolu","en","divisant","la","lumière","par","l''obscurité","et","les","jours","par","les","nuits","c''est","un","voyage","imprévisible","entre","des","lieux","qui","n''existent","pas","Je","peux","par","exemple","marcher","sur","le","rivage","et","ressentir","tout","à","coup","le","défi","effroyable","que","l''éternité","lance","à","mon","existence","dans","le","mouvement","perpétuel","de","la","mer","et","dans","la","fuite","perpétuelle","du","vent","Que","devient","alors","le","temps","si","ce","n''est","une","consolation","pour","le","fait","que","rien","de","ce","qui","est","humain","ne","dure","et","quelle","misérable","consolation","qui","n''enrichit","que","les","Suisses","Je","peux","rester","assis","devant","un","feu","dans","la","pièce","la","moins","exposée","de","toutes","au","danger","et","sentir","soudain","la","mort","me","cerner","Elle","se","trouve","dans","le","feu","dans","tous","les","objets","pointus","qui","m''entourent","dans","le","poids","du","toit","et","dans","la","masse","des","murs","Elle","se","trouve","dans","l''eau","dans","la","neige","dans","la","chaleur","et","dans","mon","sang","Que","devient","alors","le","sentiment","humain","de","sécurité","si","ce","n''est","une","consolation","pour","le","fait","que","la","mort","est","ce","qu''il","y","a","de","plus","proche","de","la","vie","et","quelle","misérable","consolation","qui","ne","fait","que","nous","rappeler","ce","qu''elle","veut","nous","faire","oublier","Je","peux","remplir","toutes","mes","pages","blanches","avec","les","plus","belles","combinaisons","de","mots","que","puisse","simaginer","mon","cerveau","Etant","donné","que","je","cherche","à","m''assurer","que","ma","vie","n''est","pas","absurde","et","que","je","ne","suis","pas","seule","sur","la","terre","je","rassemble","tous","ces","mots","en","un","livre","et","je","l''offre","au","monde","Que","devient","alors","mon","talent","si","ce","n''est","une","consolation","pour","le","fait","que","je","suis","seule","mais","quelle","épouvantable","consolation","qui","me","fait","simplement","ressentir","ma","solitude","cinq","fois","plus","fort","Je","peux","voir","la","liberté","incarnée","dans","un","animal","qui","traverse","rapidement","une","clairière","et","entendre","une","voix","qui","chuchote","Vis","simplement","prends","ce","que","tu","désires","et","n''aie","pas","peur","pour","les","lois","Mais","qu''est-ce","que","ce","bon","conseil","si","ce","n''est","une","consolation","pour","le","fait","que","la","liberté","n''existe","pas","et","quelle","impitoyable","consolation","pour","celui","qui","s''avise","que","l","être humain","doit","mettre","des","millions","d''années","pour","devenir","un","lézard"],"tradition":{"$ref":"load-test.data"}},"id":"B6C00B1A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Witness',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B570A90E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"264,1","rank":"264","reading_lexemes":[],"text":"je"},"id":"B570A90E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B579CDEA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"462,1","rank":"462","reading_lexemes":[],"text":"L''idée"},"id":"B579CDEA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6838A78-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"476,1","rank":"476","reading_lexemes":[],"text":"est"},"id":"B6838A78-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E0F088-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"295,1","rank":"295","reading_lexemes":[],"text":"dure"},"id":"B5E0F088-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5200E86-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"174,2","rank":"174","reading_lexemes":[],"text":"mais"},"id":"B5200E86-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B554B17C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"406,1","rank":"406","reading_lexemes":[],"text":"l''ascèse"},"id":"B554B17C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4E104AC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"verb tense","reading_a":"Perd","reading_b":"Perds","scope":"global","type":"grammatical"},"id":"B4E104AC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CAF99A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"558,1","rank":"558","reading_lexemes":[],"text":"au"},"id":"B5CAF99A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57DEFB0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"225,1","rank":"225","reading_lexemes":[],"text":"une"},"id":"B57DEFB0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B503D81A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"277,1","rank":"277","reading_lexemes":[],"text":"cœur"},"id":"B503D81A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61A1A3E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"240,1","rank":"240","reading_lexemes":[],"text":"de"},"id":"B61A1A3E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A459D4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"245,1","rank":"245","reading_lexemes":[],"text":"dans"},"id":"B5A459D4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63B222E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"656,2","rank":"656","reading_lexemes":[],"text":"du"},"id":"B63B222E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F21E30-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"721,1","rank":"721","reading_lexemes":[],"text":"les"},"id":"B5F21E30-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B678E6CC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"180,1","rank":"180","reading_lexemes":[],"text":"temps"},"id":"B678E6CC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D87610-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"70,1","rank":"70","reading_lexemes":[],"text":"sceptique"},"id":"B5D87610-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DF0BE8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"verb tense (also spelling)","reading_a":"m''inspirent","reading_b":"minspire","scope":"global","type":"grammatical"},"id":"B4DF0BE8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B534A8B4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"467,1","rank":"467","reading_lexemes":[],"text":"toute"},"id":"B534A8B4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63F5F4C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"774,2","rank":"774","reading_lexemes":[],"text":"qu''il"},"id":"B63F5F4C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B650F82E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"941,2","rank":"941","reading_lexemes":[],"text":"Je"},"id":"B650F82E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E22228-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"792,2","rank":"792","reading_lexemes":[],"text":"rappeler"},"id":"B5E22228-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6A4CC6A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Witness","data":{"language":"Default","sigil":"J","sourcetype":"collation","text":["Notre besoin de consolation est impossible à","rassasier","de","Stig Dagerman","Je","suis","dépourvu","de","foi","et","ne","puis","donc","être","heureux","car","un","homme","qui","risque","de","craindre","que","sa","vie","ne","soit","errance","absurde","vers","une","mort","certaine","ne","peut","être","heureux","Je n''ai","reçu","en","héritage","ni","dieu","ni","point","fixe","sur","la","terre","d''où","je","puisse","attirer","l''attention","d''un","dieu","On","ne","m''a","pas","légué","la","fureur","bien","déguisée","du","sceptique","les","ruses","des","Sioux","du","rationaliste","ou","la","candeur","ardente","de","l''athée","Je","n''ose","donc","jeter","la","pierre","ni","à","celui","qui","croient","des","choses","qui","ne","m''inspirent","que","le","doute","ni","à","celui","qui","cultive","son","doute","comme","si","celui-ci","n''était","pas","lui","aussi","entouré","de","ténèbres","Cette","pierre","m''atteindrait","moi-même","car","je","suis","bien","certain","d''une","chose","le","besoin","de","consolation","que","connait","l''être","humain","est","impossible","à","rassasier","En","ce","qui","me","concerne","je","traque","la","consolation","comme","le","chasseur","traque","le","gibier","Partout","où","je","crois","l''apercevoir","dans","la","forêt","je","tire","Souvent","je","n''atteins","que","le","vide","mais","une","fois","de","temps","en","temps","une","proie","tombe","à","mes","pieds","Et","comme","je","sais","que","la","consolation","ne","dure","que","le","temps","d''un","souffle","de","vent","dans","la","scime","d''un","arbre","je","me","dépêche","de","m''emparer","de","ma","victime","Qu''ai-je","alors","entre","mes","bras","Puisque","je","suis","solitaire","une","femme","aimée","ou","un","compagnon","de","voyage","malheureux","Puisque","je","suis","poète","un","arc","de","mots","que","je","ressens","de","la","joie","et","de","l''effroi","à","bander","Puisque","je","suis","prisonnier","un","aperçu","soudain","de","la","liberté","Puisque","je","suis","menacé","par","la","mort","un","animal","vivant","et","bien","chaud","un","cœur","qui","bat","de","façon","sarcastique","Puisque","je","suis","menacé","par","la","mer","un","récif","de","granit","bien","dur","Mais","il","y","a","aussi","des","consolations","qui","viennent","à","moi","sans","y","être","conviée","et","qui","remplissent","ma","chambre","de","chuchottements","odieux","Je","suis","ton","plaisir","aime-les","tous","Je","suis","ton","talents","fais-en","aussi","mauvais","usage","que","de","toi-même","Je","suis","ton","désir","de","jouissance","seuls","vivent","les","gourmets","Je","suis","ta","solitude","méprise","les","hommes","Je","suis","ton","aspiration","à","la","mort","alors","tranche","Le","fil","du","rasoir","est","bien","étroit","Je","crois","ma","vie","menacée","par","deux","périls","d''un","côté","par","les","bouches","avides","de","la","gourmandise","de","l''autre","par","l''amertume","de","l''avarice","qui","se","nourrit","d''elle-même","Mais","je","tiens","à","refuser","de","choisir","entre","l''orgie","et","l''ascèse","même","si","je","dois","pour","cela","subir","le","supplice","du","grill","de","mes","désirs","Pour","moi","il","ne","suffit","pas","de","savoir","que","puisque","nous","ne","sommes","pas","libres","de","nos","actes","tout","est","excusable","Ce","que","je","cherche","ce","n''est","pas","une","excuse","à","ma","vie","mais","exactement","le","contraire","d''une","excuse","le","pardon","L''idée","me","vient","finalement","que","toute","consolation","ne","prenant","pas","en","compte","ma","liberté","est","trompeuse","qu''elle","n''est","que","l''image","réfléchie","de","mon","désespoir","En","effet","lorsque","mon","désespoir","me","dit","Perds","confiance","car","chaque","jour","n''est","trève","entre","deux","nuits","la","fausse","consolation","me","crie","Espère","car","chaque","nuit","n''est","qu''une","trève","entre","deux","jours","Mais","l''humanité","n''a","que","faire","d''une","consolation","en","forme","de","mot","d''esprit","elle","a","besoin","d''une","consolation","qui","illumine","Et","celui","qui","souhaite","devenir","mauvais","c''est-à-dire","devenir","un","homme","qui","agisse","comme","si","toutes","les","actions","étaient","défendables","doit","du","moins","avoir","la","bonté","de","le","remarquer","lorsqu''il","y","parvient","Personne","ne","peut","énumérer","tous","les","cas","où","la","consolation","est","une","nécessité","Personne","ne","sait","quand","tombera","le","crépuscule","et","la","vie","n''est","pas","un","problème","qui","puisse","être","résolu","en","divisant","la","lumière","par","l''obscurité","et","les","jours","par","les","nuits","c''est","un","voyage","prévisible","entre","les","lieux","qui","n''existent","pas","Je","peux","par","exemple","marcher","sur","le","rivage","et","ressentir","tout","à","coup","le","défi","effroyable","que","l''éternité","lance","à","mon","existence","dans","le","mouvement","perpétuel","de","la","mer","et","dans","la","fuite","perpétuelle","du","vent","Que","devient","alors","le","temps","si","ce","n''est","une","consolation","pour","le","fait","que","rien","de","ce","qui","est","humain","ne","dure","et","quelle","misérable","consolation","qui","n''enrichit","que","les","Suisses","Je","peux","rester","assis","devant","un","feu","dans","la","pièce","la","moins","exposée","de","toutes","au","danger","et","sentir","soudain","la","mort","me","cerner","Elle","se","trouve","dans","le","feu","dans","tous","les","objets","pointus","qui","m''entourent","dans","le","poids","du","toit","et","dans","la","masse","des","murs","elle","se","trouve","dans","l''eau","dans","la","neige","dans","la","chaleur","et","dans","mon","sang","Que","devient","alors","le","sentiment","humain","de","sécurité","si","ce","nest","alors","une","consolation","pour","le","fait","que","la","mort","est","ce","qu''il","y","a","de","plus","proche","de","la","vie","et","quelle","misérable","consolation","qui","ne","fait","que","nous","rappeler","ce","qu''elle","veut","nous","faire","oublier","Je","peux","remplir","toutes","mes","pages","blanches","avec","les","plus","belles","combinaisons","de","mots","que","puisse","simaginer","mon","cerveau","Etant","donné","que","je","cherche","à","m''assurer","que","ma","vie","n''est","pas","absurde","et","que","je","ne","suis","pas","seule","sur","la","terre","je","rassemble","tous","ces","mots","en","un","livre","et","je","l''offre","au","monde","En","retour","celui-ci","me","donne","la","richesse","la","gloire","et","le","silence","Mais","que","puis-je","bien","faire","de","cet","argent","et","quel","plaisir","puis-je","prendre","à","contribuer","au","progrès","de","la","littérature","je","ne","désire","que","ce","que","je","n''aurai","pas","confirmation","de","ce","que","mes","mots","ont","touché","le","cœur","du","monde","Que","devient","alors","mon","talent","si","ce","n''est","une","consolation","pour","le","fait","que","je","suis","seule","mais","quelle","épouvantable","consolation","qui","me","fait","simplement","ressentir","ma","solitude","cinq","fois","plus","fort","Je","peux","voir","la","liberté","incarnée","dans","un","animal","qui","traverse","rapidement","une","clairière","et","entendre","une","voix","qui","chuchote","Vis","simplement","prends","ce","que","tu","désires","et","n''aie","pas","peur","des","lois","Mais","qu''est-ce","que","ce","bon","conseil","si","ce","n''est","une","consolation","pour","le","fait","que","la","liberté","n''existe","pas","et","quelle","impitoyable","consolation","pour","celui","qui","s''avise","que","l","être humain","doit","mettre","des","millions","d''années","pour","devenir","un","lézard"],"tradition":{"$ref":"load-test.data"}},"id":"B6A4CC6A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Witness',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63FC428-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"814,2","rank":"814","reading_lexemes":[],"text":"puisse"},"id":"B63FC428-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52B3554-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"226,1","rank":"226","reading_lexemes":[],"text":"femme"},"id":"B52B3554-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F07734-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"891,2","rank":"891","reading_lexemes":[],"text":"que"},"id":"B4F07734-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F751DA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"57,1","rank":"57","reading_lexemes":[],"text":"dieu"},"id":"B4F751DA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5AE3DB4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"205,2","rank":"205","reading_lexemes":[],"text":"nime  or scime"},"id":"B5AE3DB4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53EC77C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"556,1","rank":"556","reading_lexemes":[],"text":"défendables"},"id":"B53EC77C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53812CE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"139,1","rank":"139","reading_lexemes":[],"text":"est"},"id":"B53812CE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5261B6E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"39,1","rank":"39","reading_lexemes":[],"text":"Jai"},"id":"B5261B6E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5006B76-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"683,2","rank":"683","reading_lexemes":[],"text":"consolation"},"id":"B5006B76-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B541643C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"268,1","rank":"268","reading_lexemes":[],"text":"la"},"id":"B541643C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64F0EA6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"850,2","rank":"850","reading_lexemes":[],"text":"je"},"id":"B64F0EA6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5815286-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"689,2","rank":"689","reading_lexemes":[],"text":"Je"},"id":"B5815286-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67A0C0A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"916,2","rank":"916","reading_lexemes":[],"text":"pas"},"id":"B67A0C0A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D39448-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"1p poss/main ","reading_a":"les","reading_b":"mes","scope":"global","type":"lexical"},"id":"B4D39448-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F8C1EA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"98,1","rank":"98","reading_lexemes":[],"text":"ne"},"id":"B5F8C1EA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DFDD70-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"contraction with following","reading_a":"le","reading_b":"l","scope":"global","type":"orthographic"},"id":"B4DFDD70-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61832DC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"35,1","rank":"35","reading_lexemes":[],"text":"ne"},"id":"B61832DC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B684C9F6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"391,1","rank":"391","reading_lexemes":[],"text":"l''avarice"},"id":"B684C9F6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BE0A1E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"250,1","rank":"250","reading_lexemes":[],"text":"l''effroi"},"id":"B5BE0A1E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64CC5C4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"663,1","rank":"663","reading_lexemes":[],"text":"si"},"id":"B64CC5C4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DB42BA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"sg/pl; sense change","reading_a":"gourmandise","reading_b":"gourmandises","scope":"global","type":"grammatical"},"id":"B4DB42BA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F32628-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"623,1","rank":"623","reading_lexemes":[],"text":"peux"},"id":"B4F32628-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58A5962-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"635,2","rank":"635","reading_lexemes":[],"text":"le"},"id":"B58A5962-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4EE34C4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"275,1","rank":"275","reading_lexemes":[],"text":"chaud"},"id":"B4EE34C4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59EB9AC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"370,2","rank":"370","reading_lexemes":[],"text":"vois"},"id":"B59EB9AC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58336D2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"552,1","rank":"552","reading_lexemes":[],"text":"toutes"},"id":"B58336D2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C6A6D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"336,1","rank":"336","reading_lexemes":[],"text":"Je"},"id":"B5C6A6D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B665DE88-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"360,1","rank":"360","reading_lexemes":[],"text":"alors"},"id":"B665DE88-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C46A76-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"401,1","rank":"401","reading_lexemes":[],"text":"de"},"id":"B5C46A76-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B508634E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"141,1","rank":"141","reading_lexemes":[],"text":"à"},"id":"B508634E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56294C2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"885,3","rank":"885","reading_lexemes":[],"text":"littérature"},"id":"B56294C2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D55764-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"979,2","rank":"979","reading_lexemes":[],"text":"bon"},"id":"B5D55764-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A6A432-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"602,2","rank":"602","reading_lexemes":[],"text":"la"},"id":"B5A6A432-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B3EACA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"717,2","rank":"717","reading_lexemes":[],"text":"le"},"id":"B5B3EACA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6209904-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"901,2","rank":"901","reading_lexemes":[],"text":"mots"},"id":"B6209904-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51AC0E8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"699,2","rank":"699","reading_lexemes":[],"text":"la"},"id":"B51AC0E8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53F84BE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"244,1","rank":"244","reading_lexemes":[],"text":"ressent"},"id":"B53F84BE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F27E2A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"790,2","rank":"790","reading_lexemes":[],"text":"que"},"id":"B5F27E2A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59F787E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"914,2","rank":"914","reading_lexemes":[],"text":"ce"},"id":"B59F787E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63060B4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"662,2","rank":"662","reading_lexemes":[],"text":"temps"},"id":"B63060B4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A519B4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"865,2","rank":"865","reading_lexemes":[],"text":"silence"},"id":"B5A519B4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4EBF2F4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"488,1","rank":"488","reading_lexemes":[],"text":"lorsque"},"id":"B4EBF2F4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65CF052-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"962,2","rank":"962","reading_lexemes":[],"text":"simplement"},"id":"B65CF052-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58DDE98-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"618,2","rank":"618","reading_lexemes":[],"text":"lieux"},"id":"B58DDE98-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6625588-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"62,1","rank":"62","reading_lexemes":[],"text":"non"},"id":"B6625588-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B604F578-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"295,2","rank":"295","reading_lexemes":[],"text":"dur"},"id":"B604F578-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CB5A84-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"534,1","rank":"534","reading_lexemes":[],"text":"d''une"},"id":"B5CB5A84-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5A339C8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"482,1","rank":"482","reading_lexemes":[],"text":"réfléchie"},"id":"B5A339C8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DAB3C2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"gender","reading_a":"dure","reading_b":"dur","scope":"global","type":"grammatical"},"id":"B4DAB3C2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B68848A6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"55,1","rank":"55","reading_lexemes":[],"text":"l''attention"},"id":"B68848A6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6600BAC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"418,2","rank":"418","reading_lexemes":[],"text":"des"},"id":"B6600BAC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F1380E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"848,2","rank":"848","reading_lexemes":[],"text":"livre"},"id":"B4F1380E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58C5FAA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"829,2","rank":"829","reading_lexemes":[],"text":"pas"},"id":"B58C5FAA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62E768C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"440,1","rank":"440","reading_lexemes":[],"text":"est"},"id":"B62E768C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F690C4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"335,1","rank":"335","reading_lexemes":[],"text":"Toi-même"},"id":"B4F690C4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61C66CC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"784,2","rank":"784","reading_lexemes":[],"text":"quelle"},"id":"B61C66CC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B618F352-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"131,1","rank":"131","reading_lexemes":[],"text":"le"},"id":"B618F352-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B662B83E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"3,1","rank":"3","reading_lexemes":[],"text":"de"},"id":"B662B83E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B626D4C2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"337,1","rank":"337","reading_lexemes":[],"text":"suis"},"id":"B626D4C2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6730BF8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"406,2","rank":"406","reading_lexemes":[],"text":"la cèse"},"id":"B6730BF8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4E19A48-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Graph","data":"--- &1 !!perl/array:Graph\n- 0\n- 1155\n- !!perl/array:Graph::AdjacencyMap::Light\n  - 1095\n  - 152\n  - 1\n  - ''0'': ''#START#''\n    ''1'': ''#END#''\n    ''10'': 1004,2\n    ''100'': 168,1\n    ''1000'': 922,2\n    ''1001'': 923,2\n    ''1002'': 924,2\n    ''1003'': 925,1\n    ''1004'': 925,3\n    ''1005'': 926,2\n    ''1006'': 927,1\n    ''1007'': 927,3\n    ''1008'': 928,2\n    ''1009'': 929,2\n    ''101'': 169,1\n    ''1010'': 93,1\n    ''1011'': 93,2\n    ''1012'': 93,3\n    ''1013'': 930,2\n    ''1014'': 931,2\n    ''1015'': 932,2\n    ''1016'': 933,2\n    ''1017'': 934,2\n    ''1018'': 935,2\n    ''1019'': 936,2\n    ''102'': 17,1\n    ''1020'': 937,2\n    ''1021'': 938,2\n    ''1022'': 939,1\n    ''1023'': 94,1\n    ''1024'': 940,2\n    ''1025'': 941,2\n    ''1026'': 942,2\n    ''1027'': 943,1\n    ''1028'': 944,2\n    ''1029'': 945,2\n    ''103'': 170,1\n    ''1030'': 946,2\n    ''1031'': 947,1\n    ''1032'': 948,2\n    ''1033'': 949,2\n    ''1034'': 95,1\n    ''1035'': 950,2\n    ''1036'': 951,2\n    ''1037'': 952,2\n    ''1038'': 953,2\n    ''1039'': 954,2\n    ''104'': 170,2\n    ''1040'': 954,3\n    ''1041'': 955,1\n    ''1042'': 956,2\n    ''1043'': 957,2\n    ''1044'': 958,2\n    ''1045'': 959,2\n    ''1046'': 96,1\n    ''1047'': 960,1\n    ''1048'': 961,2\n    ''1049'': 962,2\n    ''105'': 171,1\n    ''1050'': 963,2\n    ''1051'': 964,2\n    ''1052'': 965,2\n    ''1053'': 966,2\n    ''1054'': 967,2\n    ''1055'': 968,1\n    ''1056'': 969,2\n    ''1057'': 969,3\n    ''1058'': 969,4\n    ''1059'': 97,1\n    ''106'': 172,1\n    ''1060'': 970,2\n    ''1061'': 971,2\n    ''1062'': 972,1\n    ''1063'': 973,1\n    ''1064'': 973,3\n    ''1065'': 974,2\n    ''1066'': 974,3\n    ''1067'': 975,2\n    ''1068'': 976,2\n    ''1069'': 977,2\n    ''107'': 173,1\n    ''1070'': 978,2\n    ''1071'': 979,2\n    ''1072'': 98,1\n    ''1073'': 980,1\n    ''1074'': 981,1\n    ''1075'': 982,2\n    ''1076'': 983,2\n    ''1077'': 984,2\n    ''1078'': 985,2\n    ''1079'': 986,1\n    ''108'': 174,2\n    ''1080'': 987,2\n    ''1081'': 988,2\n    ''1082'': 989,2\n    ''1083'': 99,1\n    ''1084'': 99,2\n    ''1085'': 990,2\n    ''1086'': 991,2\n    ''1087'': 992,2\n    ''1088'': 993,2\n    ''1089'': 994,1\n    ''109'': 175,1\n    ''1090'': 995,2\n    ''1091'': 996,2\n    ''1092'': 997,2\n    ''1093'': 998,1\n    ''1094'': 999,2\n    ''11'': 1004,3\n    ''110'': 176,1\n    ''111'': 177,1\n    ''112'': 178,1\n    ''113'': 179,1\n    ''114'': 18,1\n    ''115'': 180,1\n    ''116'': 181,1\n    ''117'': 182,1\n    ''118'': 182,2\n    ''119'': 183,1\n    ''12'': 1005,2\n    ''120'': 184,1\n    ''121'': 185,1\n    ''122'': 186,1\n    ''123'': 187,1\n    ''124'': 188,1\n    ''125'': 189,1\n    ''126'': 19,1\n    ''127'': 190,1\n    ''128'': 191,1\n    ''129'': 192,1\n    ''13'': 1006,2\n    ''130'': 193,1\n    ''131'': 194,1\n    ''132'': 195,1\n    ''133'': 196,1\n    ''134'': 197,1\n    ''135'': 198,1\n    ''136'': 199,1\n    ''137'': 2,1\n    ''138'': 2,2\n    ''139'': 20,1\n    ''14'': 1007,2\n    ''140'': 200,1\n    ''141'': 201,1\n    ''142'': 202,1\n    ''143'': 203,1\n    ''144'': 204,1\n    ''145'': 205,2\n    ''146'': 205,3\n    ''147'': 205,4\n    ''148'': 205,5\n    ''149'': 205,6\n    ''15'': 1008,2\n    ''150'': 206,1\n    ''151'': 207,1\n    ''152'': 208,1\n    ''153'': 209,1\n    ''154'': 21,1\n    ''155'': 210,1\n    ''156'': 211,1\n    ''157'': 212,1\n    ''158'': 213,1\n    ''159'': 214,1\n    ''16'': 1009,2\n    ''160'': 215,1\n    ''161'': 216,1\n    ''162'': 217,1\n    ''163'': 218,1\n    ''164'': 219,1\n    ''165'': 219,2\n    ''166'': 22,1\n    ''167'': 220,1\n    ''168'': 221,1\n    ''169'': 222,1\n    ''17'': 101,1\n    ''170'': 223,1\n    ''171'': 224,1\n    ''172'': 225,1\n    ''173'': 226,1\n    ''174'': 227,1\n    ''175'': 228,1\n    ''176'': 229,1\n    ''177'': 23,1\n    ''178'': 230,1\n    ''179'': 231,1\n    ''18'': 1010,1\n    ''180'': 232,1\n    ''181'': 233,1\n    ''182'': 234,1\n    ''183'': 235,1\n    ''184'': 236,1\n    ''185'': 237,1\n    ''186'': 238,1\n    ''187'': 239,1\n    ''188'': 239,2\n    ''189'': 24,1\n    ''19'': 1011,2\n    ''190'': 240,1\n    ''191'': 241,1\n    ''192'': 242,1\n    ''193'': 243,1\n    ''194'': 244,1\n    ''195'': 244,2\n    ''196'': 245,1\n    ''197'': 245,2\n    ''198'': 246,1\n    ''199'': 247,1\n    ''2'': 1,1\n    ''20'': 1012,2\n    ''200'': 248,1\n    ''201'': 249,1\n    ''202'': 25,1\n    ''203'': 250,1\n    ''204'': 251,1\n    ''205'': 251,2\n    ''206'': 252,1\n    ''207'': 253,1\n    ''208'': 254,1\n    ''209'': 255,1\n    ''21'': 1013,3\n    ''210'': 256,1\n    ''211'': 257,1\n    ''212'': 258,1\n    ''213'': 259,1\n    ''214'': 26,1\n    ''215'': 260,1\n    ''216'': 261,1\n    ''217'': 262,1\n    ''218'': 263,1\n    ''219'': 264,1\n    ''22'': 1013,4\n    ''220'': 265,1\n    ''221'': 266,1\n    ''222'': 267,1\n    ''223'': 268,1\n    ''224'': 269,1\n    ''225'': 27,1\n    ''226'': 270,1\n    ''227'': 271,1\n    ''228'': 272,1\n    ''229'': 273,1\n    ''23'': 102,2\n    ''230'': 274,1\n    ''231'': 275,1\n    ''232'': 276,1\n    ''233'': 277,1\n    ''234'': 278,1\n    ''235'': 279,1\n    ''236'': 28,1\n    ''237'': 280,1\n    ''238'': 281,1\n    ''239'': 282,1\n    ''24'': 103,1\n    ''240'': 283,1\n    ''241'': 284,1\n    ''242'': 285,1\n    ''243'': 286,1\n    ''244'': 287,1\n    ''245'': 288,1\n    ''246'': 289,1\n    ''247'': 29,1\n    ''248'': 290,1\n    ''249'': 291,1\n    ''25'': 104,1\n    ''250'': 292,1\n    ''251'': 293,1\n    ''252'': 293,2\n    ''253'': 294,1\n    ''254'': 295,1\n    ''255'': 295,2\n    ''256'': 296,1\n    ''257'': 297,1\n    ''258'': 298,1\n    ''259'': 299,1\n    ''26'': 105,1\n    ''260'': 3,1\n    ''261'': 30,1\n    ''262'': 300,1\n    ''263'': 301,1\n    ''264'': 302,1\n    ''265'': 303,1\n    ''266'': 304,1\n    ''267'': 305,1\n    ''268'': 306,1\n    ''269'': 307,1\n    ''27'': 106,1\n    ''270'': 308,1\n    ''271'': 309,1\n    ''272'': 309,2\n    ''273'': 31,1\n    ''274'': 310,1\n    ''275'': 310,2\n    ''276'': 311,1\n    ''277'': 312,1\n    ''278'': 313,1\n    ''279'': 314,1\n    ''28'': 107,1\n    ''280'': 315,1\n    ''281'': 316,1\n    ''282'': 317,1\n    ''283'': 317,2\n    ''284'': 318,1\n    ''285'': 318,2\n    ''286'': 319,1\n    ''287'': 319,2\n    ''288'': 32,1\n    ''289'': 320,1\n    ''29'': 108,1\n    ''290'': 321,1\n    ''291'': 322,1\n    ''292'': 323,1\n    ''293'': 324,1\n    ''294'': 324,3\n    ''295'': 325,1\n    ''296'': 326,1\n    ''297'': 327,1\n    ''298'': 328,1\n    ''299'': 328,3\n    ''3'': 10,1\n    ''30'': 109,1\n    ''300'': 329,1\n    ''301'': 33,1\n    ''302'': 330,1\n    ''303'': 331,1\n    ''304'': 332,1\n    ''305'': 333,1\n    ''306'': 334,1\n    ''307'': 335,1\n    ''308'': 335,2\n    ''309'': 336,1\n    ''31'': 11,1\n    ''310'': 337,1\n    ''311'': 338,1\n    ''312'': 339,1\n    ''313'': 34,1\n    ''314'': 340,1\n    ''315'': 341,2\n    ''316'': 342,1\n    ''317'': 343,1\n    ''318'': 344,1\n    ''319'': 345,2\n    ''32'': 110,1\n    ''320'': 346,1\n    ''321'': 347,1\n    ''322'': 348,1\n    ''323'': 349,2\n    ''324'': 35,1\n    ''325'': 350,1\n    ''326'': 350,2\n    ''327'': 351,1\n    ''328'': 352,2\n    ''329'': 353,1\n    ''33'': 110,2\n    ''330'': 354,1\n    ''331'': 355,1\n    ''332'': 356,1\n    ''333'': 357,1\n    ''334'': 358,1\n    ''335'': 359,1\n    ''336'': 36,1\n    ''337'': 360,1\n    ''338'': 361,1\n    ''339'': 361,2\n    ''34'': 111,1\n    ''340'': 362,1\n    ''341'': 363,1\n    ''342'': 364,1\n    ''343'': 365,1\n    ''344'': 366,1\n    ''345'': 367,1\n    ''346'': 368,1\n    ''347'': 369,1\n    ''348'': 37,1\n    ''349'': 370,1\n    ''35'': 112,1\n    ''350'': 370,2\n    ''351'': 371,1\n    ''352'': 372,1\n    ''353'': 373,1\n    ''354'': 374,1\n    ''355'': 375,1\n    ''356'': 376,1\n    ''357'': 377,1\n    ''358'': 378,1\n    ''359'': 379,1\n    ''36'': 113,1\n    ''360'': 38,1\n    ''361'': 380,1\n    ''362'': 381,1\n    ''363'': 382,1\n    ''364'': 382,2\n    ''365'': 383,1\n    ''366'': 384,1\n    ''367'': 385,1\n    ''368'': 385,2\n    ''369'': 386,1\n    ''37'': 114,1\n    ''370'': 387,1\n    ''371'': 388,1\n    ''372'': 389,1\n    ''373'': 39,1\n    ''374'': 39,2\n    ''375'': 390,1\n    ''376'': 391,1\n    ''377'': 392,1\n    ''378'': 393,1\n    ''379'': 394,1\n    ''38'': 115,1\n    ''380'': 395,1\n    ''381'': 396,1\n    ''382'': 397,1\n    ''383'': 398,1\n    ''384'': 399,1\n    ''385'': 4,1\n    ''386'': 40,1\n    ''387'': 400,1\n    ''388'': 401,1\n    ''389'': 402,1\n    ''39'': 116,2\n    ''390'': 403,1\n    ''391'': 404,1\n    ''392'': 405,1\n    ''393'': 406,1\n    ''394'': 406,2\n    ''395'': 407,1\n    ''396'': 408,1\n    ''397'': 409,1\n    ''398'': 41,1\n    ''399'': 410,1\n    ''4'': 100,1\n    ''40'': 117,1\n    ''400'': 411,1\n    ''401'': 412,1\n    ''402'': 413,1\n    ''403'': 413,2\n    ''404'': 414,1\n    ''405'': 415,1\n    ''406'': 416,1\n    ''407'': 417,1\n    ''408'': 417,2\n    ''409'': 418,1\n    ''41'': 118,1\n    ''410'': 418,2\n    ''411'': 419,1\n    ''412'': 42,1\n    ''413'': 420,1\n    ''414'': 421,1\n    ''415'': 422,1\n    ''416'': 423,1\n    ''417'': 424,1\n    ''418'': 425,1\n    ''419'': 426,1\n    ''42'': 119,1\n    ''420'': 427,1\n    ''421'': 428,1\n    ''422'': 429,1\n    ''423'': 43,1\n    ''424'': 430,1\n    ''425'': 431,1\n    ''426'': 432,1\n    ''427'': 433,1\n    ''428'': 434,1\n    ''429'': 435,1\n    ''43'': 12,1\n    ''430'': 436,1\n    ''431'': 437,1\n    ''432'': 438,1\n    ''433'': 439,1\n    ''434'': 44,2\n    ''435'': 440,1\n    ''436'': 441,1\n    ''437'': 442,1\n    ''438'': 443,1\n    ''439'': 444,1\n    ''44'': 120,1\n    ''440'': 445,1\n    ''441'': 446,1\n    ''442'': 447,1\n    ''443'': 448,1\n    ''444'': 449,1\n    ''445'': 45,1\n    ''446'': 450,1\n    ''447'': 451,1\n    ''448'': 452,1\n    ''449'': 453,1\n    ''45'': 121,1\n    ''450'': 454,1\n    ''451'': 455,1\n    ''452'': 456,1\n    ''453'': 457,1\n    ''454'': 458,1\n    ''455'': 459,1\n    ''456'': 459,2\n    ''457'': 46,1\n    ''458'': 460,1\n    ''459'': 461,1\n    ''46'': 122,1\n    ''460'': 462,1\n    ''461'': 463,1\n    ''462'': 464,1\n    ''463'': 465,1\n    ''464'': 466,1\n    ''465'': 467,1\n    ''466'': 468,1\n    ''467'': 469,1\n    ''468'': 47,1\n    ''469'': 470,1\n    ''47'': 123,1\n    ''470'': 471,1\n    ''471'': 472,1\n    ''472'': 473,1\n    ''473'': 474,1\n    ''474'': 475,1\n    ''475'': 476,1\n    ''476'': 477,1\n    ''477'': 478,1\n    ''478'': 479,1\n    ''479'': 48,1\n    ''48'': 124,1\n    ''480'': 480,1\n    ''481'': 481,1\n    ''482'': 482,1\n    ''483'': 483,1\n    ''484'': 484,1\n    ''485'': 485,1\n    ''486'': 486,1\n    ''487'': 487,1\n    ''488'': 488,1\n    ''489'': 489,1\n    ''49'': 125,1\n    ''490'': 49,1\n    ''491'': 490,1\n    ''492'': 491,1\n    ''493'': 492,1\n    ''494'': 493,1\n    ''495'': 493,2\n    ''496'': 493,3\n    ''497'': 493,4\n    ''498'': 494,2\n    ''499'': 495,1\n    ''5'': 1000,2\n    ''50'': 126,1\n    ''500'': 496,1\n    ''501'': 497,1\n    ''502'': 497,2\n    ''503'': 498,1\n    ''504'': 499,1\n    ''505'': 5,1\n    ''506'': 50,1\n    ''507'': 500,1\n    ''508'': 500,2\n    ''509'': 501,1\n    ''51'': 127,1\n    ''510'': 502,1\n    ''511'': 503,1\n    ''512'': 504,1\n    ''513'': 505,1\n    ''514'': 506,1\n    ''515'': 507,1\n    ''516'': 508,1\n    ''517'': 509,1\n    ''518'': 51,1\n    ''519'': 510,1\n    ''52'': 128,1\n    ''520'': 511,1\n    ''521'': 512,1\n    ''522'': 513,1\n    ''523'': 514,1\n    ''524'': 515,1\n    ''525'': 515,2\n    ''526'': 516,1\n    ''527'': 517,1\n    ''528'': 518,1\n    ''529'': 519,1\n    ''53'': 129,1\n    ''530'': 52,1\n    ''531'': 520,1\n    ''532'': 521,1\n    ''533'': 522,1\n    ''534'': 523,1\n    ''535'': 524,1\n    ''536'': 525,1\n    ''537'': 526,1\n    ''538'': 527,1\n    ''539'': 528,1\n    ''54'': 13,1\n    ''540'': 529,1\n    ''541'': 53,1\n    ''542'': 530,1\n    ''543'': 531,1\n    ''544'': 532,1\n    ''545'': 533,1\n    ''546'': 534,1\n    ''547'': 535,1\n    ''548'': 536,1\n    ''549'': 537,1\n    ''55'': 130,1\n    ''550'': 538,1\n    ''551'': 539,1\n    ''552'': 54,1\n    ''553'': 540,1\n    ''554'': 541,1\n    ''555'': 542,1\n    ''556'': 543,1\n    ''557'': 544,1\n    ''558'': 545,1\n    ''559'': 546,1\n    ''56'': 131,1\n    ''560'': 547,1\n    ''561'': 548,1\n    ''562'': 549,1\n    ''563'': 55,1\n    ''564'': 550,1\n    ''565'': 551,1\n    ''566'': 552,1\n    ''567'': 553,1\n    ''568'': 554,1\n    ''569'': 555,1\n    ''57'': 132,1\n    ''570'': 556,1\n    ''571'': 556,2\n    ''572'': 557,1\n    ''573'': 558,1\n    ''574'': 558,2\n    ''575'': 559,1\n    ''576'': 56,1\n    ''577'': 560,1\n    ''578'': 561,1\n    ''579'': 562,1\n    ''58'': 133,1\n    ''580'': 563,1\n    ''581'': 564,1\n    ''582'': 565,1\n    ''583'': 566,1\n    ''584'': 567,1\n    ''585'': 568,1\n    ''586'': 569,1\n    ''587'': 57,1\n    ''588'': 570,1\n    ''589'': 571,1\n    ''59'': 134,1\n    ''590'': 572,1\n    ''591'': 573,1\n    ''592'': 574,1\n    ''593'': 575,1\n    ''594'': 576,1\n    ''595'': 577,1\n    ''596'': 578,1\n    ''597'': 579,1\n    ''598'': 58,1\n    ''599'': 580,1\n    ''6'': 1001,2\n    ''60'': 135,1\n    ''600'': 581,1\n    ''601'': 582,1\n    ''602'': 583,1\n    ''603'': 584,1\n    ''604'': 585,1\n    ''605'': 586,1\n    ''606'': 586,2\n    ''607'': 587,2\n    ''608'': 588,2\n    ''609'': 589,1\n    ''61'': 136,1\n    ''610'': 59,1\n    ''611'': 590,2\n    ''612'': 591,2\n    ''613'': 592,2\n    ''614'': 593,2\n    ''615'': 594,2\n    ''616'': 595,1\n    ''617'': 596,2\n    ''618'': 597,2\n    ''619'': 597,3\n    ''62'': 136,2\n    ''620'': 598,2\n    ''621'': 599,2\n    ''622'': 6,1\n    ''623'': 60,1\n    ''624'': 600,1\n    ''625'': 601,2\n    ''626'': 602,2\n    ''627'': 603,1\n    ''628'': 604,2\n    ''629'': 605,2\n    ''63'': 137,1\n    ''630'': 606,1\n    ''631'': 607,1\n    ''632'': 608,1\n    ''633'': 609,2\n    ''634'': 61,1\n    ''635'': 610,1\n    ''636'': 611,3\n    ''637'': 612,2\n    ''638'': 613,2\n    ''639'': 614,2\n    ''64'': 138,1\n    ''640'': 615,2\n    ''641'': 615,3\n    ''642'': 616,2\n    ''643'': 617,1\n    ''644'': 617,3\n    ''645'': 618,2\n    ''646'': 619,2\n    ''647'': 62,1\n    ''648'': 620,2\n    ''649'': 621,2\n    ''65'': 139,1\n    ''650'': 622,2\n    ''651'': 623,1\n    ''652'': 624,2\n    ''653'': 625,2\n    ''654'': 626,2\n    ''655'': 627,2\n    ''656'': 628,2\n    ''657'': 629,2\n    ''658'': 63,1\n    ''659'': 630,1\n    ''66'': 14,1\n    ''660'': 631,2\n    ''661'': 632,2\n    ''662'': 632,3\n    ''663'': 633,1\n    ''664'': 634,2\n    ''665'': 634,3\n    ''666'': 635,2\n    ''667'': 636,2\n    ''668'': 636,3\n    ''669'': 637,2\n    ''67'': 140,1\n    ''670'': 638,2\n    ''671'': 639,1\n    ''672'': 64,1\n    ''673'': 640,2\n    ''674'': 641,1\n    ''675'': 642,2\n    ''676'': 643,2\n    ''677'': 644,1\n    ''678'': 645,2\n    ''679'': 646,2\n    ''68'': 141,1\n    ''680'': 647,2\n    ''681'': 648,2\n    ''682'': 649,2\n    ''683'': 65,1\n    ''684'': 650,2\n    ''685'': 651,1\n    ''686'': 652,1\n    ''687'': 653,2\n    ''688'': 654,2\n    ''689'': 655,2\n    ''69'': 142,1\n    ''690'': 656,2\n    ''691'': 657,2\n    ''692'': 658,2\n    ''693'': 659,2\n    ''694'': 66,1\n    ''695'': 660,2\n    ''696'': 661,2\n    ''697'': 662,2\n    ''698'': 663,1\n    ''699'': 664,2\n    ''7'': 1002,2\n    ''70'': 142,2\n    ''700'': 665,2\n    ''701'': 666,2\n    ''702'': 667,2\n    ''703'': 668,1\n    ''704'': 669,2\n    ''705'': 67,1\n    ''706'': 670,2\n    ''707'': 671,2\n    ''708'': 672,2\n    ''709'': 673,2\n    ''71'': 143,1\n    ''710'': 674,2\n    ''711'': 675,2\n    ''712'': 676,2\n    ''713'': 677,2\n    ''714'': 678,1\n    ''715'': 679,2\n    ''716'': 68,1\n    ''717'': 680,1\n    ''718'': 681,2\n    ''719'': 682,2\n    ''72'': 144,1\n    ''720'': 683,2\n    ''721'': 684,2\n    ''722'': 685,2\n    ''723'': 685,3\n    ''724'': 686,2\n    ''725'': 687,1\n    ''726'': 688,2\n    ''727'': 689,2\n    ''728'': 69,1\n    ''729'': 690,2\n    ''73'': 145,1\n    ''730'': 691,2\n    ''731'': 692,2\n    ''732'': 693,2\n    ''733'': 694,2\n    ''734'': 695,2\n    ''735'': 696,1\n    ''736'': 697,2\n    ''737'': 698,2\n    ''738'': 699,2\n    ''739'': 7,1\n    ''74'': 146,1\n    ''740'': 70,1\n    ''741'': 700,2\n    ''742'': 701,2\n    ''743'': 702,2\n    ''744'': 703,1\n    ''745'': 704,2\n    ''746'': 705,2\n    ''747'': 706,1\n    ''748'': 707,2\n    ''749'': 708,2\n    ''75'': 147,1\n    ''750'': 709,2\n    ''751'': 71,1\n    ''752'': 710,1\n    ''753'': 711,2\n    ''754'': 712,2\n    ''755'': 713,2\n    ''756'': 714,2\n    ''757'': 715,2\n    ''758'': 716,1\n    ''759'': 717,2\n    ''76'': 148,1\n    ''760'': 718,2\n    ''761'': 719,1\n    ''762'': 72,1\n    ''763'': 720,2\n    ''764'': 721,1\n    ''765'': 722,2\n    ''766'': 723,2\n    ''767'': 724,2\n    ''768'': 725,2\n    ''769'': 726,1\n    ''77'': 149,1\n    ''770'': 727,2\n    ''771'': 728,2\n    ''772'': 729,2\n    ''773'': 73,1\n    ''774'': 73,2\n    ''775'': 730,1\n    ''776'': 731,1\n    ''777'': 732,1\n    ''778'': 733,2\n    ''779'': 734,2\n    ''78'': 15,1\n    ''780'': 735,2\n    ''781'': 736,3\n    ''782'': 737,2\n    ''783'': 737,3\n    ''784'': 738,2\n    ''785'': 739,2\n    ''786'': 74,1\n    ''787'': 740,1\n    ''788'': 741,2\n    ''789'': 742,1\n    ''79'': 150,1\n    ''790'': 743,2\n    ''791'': 744,2\n    ''792'': 745,1\n    ''793'': 746,2\n    ''794'': 747,2\n    ''795'': 748,1\n    ''796'': 749,1\n    ''797'': 75,1\n    ''798'': 750,2\n    ''799'': 751,1\n    ''8'': 1003,2\n    ''80'': 151,1\n    ''800'': 752,2\n    ''801'': 753,2\n    ''802'': 754,2\n    ''803'': 755,2\n    ''804'': 756,2\n    ''805'': 757,2\n    ''806'': 758,2\n    ''807'': 759,2\n    ''808'': 76,1\n    ''809'': 76,2\n    ''81'': 152,1\n    ''810'': 760,1\n    ''811'': 761,2\n    ''812'': 762,2\n    ''813'': 762,3\n    ''814'': 763,2\n    ''815'': 764,2\n    ''816'': 765,2\n    ''817'': 766,1\n    ''818'': 767,2\n    ''819'': 768,2\n    ''82'': 153,1\n    ''820'': 769,2\n    ''821'': 77,1\n    ''822'': 770,2\n    ''823'': 771,1\n    ''824'': 772,2\n    ''825'': 773,2\n    ''826'': 774,2\n    ''827'': 775,1\n    ''828'': 776,2\n    ''829'': 777,2\n    ''83'': 154,1\n    ''830'': 777,3\n    ''831'': 777,4\n    ''832'': 778,1\n    ''833'': 779,1\n    ''834'': 78,1\n    ''835'': 780,1\n    ''836'': 780,3\n    ''837'': 781,2\n    ''838'': 782,3\n    ''839'': 783,1\n    ''84'': 155,1\n    ''840'': 784,2\n    ''841'': 785,2\n    ''842'': 786,2\n    ''843'': 787,2\n    ''844'': 788,1\n    ''845'': 789,2\n    ''846'': 79,1\n    ''847'': 790,2\n    ''848'': 791,2\n    ''849'': 792,2\n    ''85'': 155,2\n    ''850'': 793,2\n    ''851'': 794,2\n    ''852'': 795,2\n    ''853'': 796,2\n    ''854'': 797,2\n    ''855'': 798,1\n    ''856'': 799,2\n    ''857'': 8,1\n    ''858'': 80,1\n    ''859'': 800,2\n    ''86'': 155,3\n    ''860'': 801,1\n    ''861'': 802,1\n    ''862'': 803,1\n    ''863'': 803,3\n    ''864'': 804,2\n    ''865'': 805,2\n    ''866'': 806,2\n    ''867'': 807,1\n    ''868'': 808,1\n    ''869'': 809,2\n    ''87'': 156,1\n    ''870'': 81,1\n    ''871'': 810,1\n    ''872'': 811,2\n    ''873'': 812,2\n    ''874'': 813,2\n    ''875'': 814,2\n    ''876'': 815,1\n    ''877'': 815,3\n    ''878'': 816,2\n    ''879'': 817,2\n    ''88'': 157,1\n    ''880'': 818,2\n    ''881'': 819,2\n    ''882'': 82,1\n    ''883'': 820,2\n    ''884'': 821,2\n    ''885'': 822,2\n    ''886'': 823,1\n    ''887'': 824,2\n    ''888'': 825,2\n    ''889'': 826,2\n    ''89'': 158,1\n    ''890'': 827,2\n    ''891'': 828,2\n    ''892'': 829,2\n    ''893'': 83,1\n    ''894'': 830,2\n    ''895'': 831,1\n    ''896'': 832,2\n    ''897'': 833,2\n    ''898'': 834,1\n    ''899'': 835,2\n    ''9'': 1003,3\n    ''90'': 159,1\n    ''900'': 836,2\n    ''901'': 837,1\n    ''902'': 837,3\n    ''903'': 838,2\n    ''904'': 839,2\n    ''905'': 84,1\n    ''906'': 840,2\n    ''907'': 841,2\n    ''908'': 842,1\n    ''909'': 843,2\n    ''91'': 16,1\n    ''910'': 844,1\n    ''911'': 845,2\n    ''912'': 846,1\n    ''913'': 847,2\n    ''914'': 848,2\n    ''915'': 849,1\n    ''916'': 85,1\n    ''917'': 850,2\n    ''918'': 851,2\n    ''919'': 852,2\n    ''92'': 160,1\n    ''920'': 853,2\n    ''921'': 854,2\n    ''922'': 855,2\n    ''923'': 856,2\n    ''924'': 857,2\n    ''925'': 858,2\n    ''926'': 859,2\n    ''927'': 86,1\n    ''928'': 860,2\n    ''929'': 861,2\n    ''93'': 161,1\n    ''930'': 862,2\n    ''931'': 863,1\n    ''932'': 864,2\n    ''933'': 865,2\n    ''934'': 866,2\n    ''935'': 867,2\n    ''936'': 868,2\n    ''937'': 869,2\n    ''938'': 87,1\n    ''939'': 870,2\n    ''94'': 162,1\n    ''940'': 871,2\n    ''941'': 872,2\n    ''942'': 873,2\n    ''943'': 874,1\n    ''944'': 875,1\n    ''945'': 876,2\n    ''946'': 877,2\n    ''947'': 878,2\n    ''948'': 879,1\n    ''949'': 88,1\n    ''95'': 163,1\n    ''950'': 880,2\n    ''951'': 881,2\n    ''952'': 882,1\n    ''953'': 883,2\n    ''954'': 884,2\n    ''955'': 885,3\n    ''956'': 886,2\n    ''957'': 887,1\n    ''958'': 888,2\n    ''959'': 889,2\n    ''96'': 164,1\n    ''960'': 89,1\n    ''961'': 890,2\n    ''962'': 891,2\n    ''963'': 892,2\n    ''964'': 893,2\n    ''965'': 894,2\n    ''966'': 895,2\n    ''967'': 896,2\n    ''968'': 897,2\n    ''969'': 898,2\n    ''97'': 165,1\n    ''970'': 899,2\n    ''971'': 9,1\n    ''972'': 90,1\n    ''973'': 900,2\n    ''974'': 901,2\n    ''975'': 902,1\n    ''976'': 903,1\n    ''977'': 904,2\n    ''978'': 905,2\n    ''979'': 906,2\n    ''98'': 166,1\n    ''980'': 907,2\n    ''981'': 908,2\n    ''982'': 909,2\n    ''983'': 91,1\n    ''984'': 91,2\n    ''985'': 91,3\n    ''986'': 910,2\n    ''987'': 911,2\n    ''988'': 912,2\n    ''989'': 913,1\n    ''99'': 167,1\n    ''990'': 914,2\n    ''991'': 915,2\n    ''992'': 915,3\n    ''993'': 916,2\n    ''994'': 917,2\n    ''995'': 918,2\n    ''996'': 919,1\n    ''997'': 92,1\n    ''998'': 920,2\n    ''999'': 921,2\n  - ''#END#'': 1\n    ''#START#'': 0\n    1,1: 2\n    10,1: 3\n    100,1: 4\n    1000,2: 5\n    1001,2: 6\n    1002,2: 7\n    1003,2: 8\n    1003,3: 9\n    1004,2: 10\n    1004,3: 11\n    1005,2: 12\n    1006,2: 13\n    1007,2: 14\n    1008,2: 15\n    1009,2: 16\n    101,1: 17\n    1010,1: 18\n    1011,2: 19\n    1012,2: 20\n    1013,3: 21\n    1013,4: 22\n    102,2: 23\n    103,1: 24\n    104,1: 25\n    105,1: 26\n    106,1: 27\n    107,1: 28\n    108,1: 29\n    109,1: 30\n    11,1: 31\n    110,1: 32\n    110,2: 33\n    111,1: 34\n    112,1: 35\n    113,1: 36\n    114,1: 37\n    115,1: 38\n    116,2: 39\n    117,1: 40\n    118,1: 41\n    119,1: 42\n    12,1: 43\n    120,1: 44\n    121,1: 45\n    122,1: 46\n    123,1: 47\n    124,1: 48\n    125,1: 49\n    126,1: 50\n    127,1: 51\n    128,1: 52\n    129,1: 53\n    13,1: 54\n    130,1: 55\n    131,1: 56\n    132,1: 57\n    133,1: 58\n    134,1: 59\n    135,1: 60\n    136,1: 61\n    136,2: 62\n    137,1: 63\n    138,1: 64\n    139,1: 65\n    14,1: 66\n    140,1: 67\n    141,1: 68\n    142,1: 69\n    142,2: 70\n    143,1: 71\n    144,1: 72\n    145,1: 73\n    146,1: 74\n    147,1: 75\n    148,1: 76\n    149,1: 77\n    15,1: 78\n    150,1: 79\n    151,1: 80\n    152,1: 81\n    153,1: 82\n    154,1: 83\n    155,1: 84\n    155,2: 85\n    155,3: 86\n    156,1: 87\n    157,1: 88\n    158,1: 89\n    159,1: 90\n    16,1: 91\n    160,1: 92\n    161,1: 93\n    162,1: 94\n    163,1: 95\n    164,1: 96\n    165,1: 97\n    166,1: 98\n    167,1: 99\n    168,1: 100\n    169,1: 101\n    17,1: 102\n    170,1: 103\n    170,2: 104\n    171,1: 105\n    172,1: 106\n    173,1: 107\n    174,2: 108\n    175,1: 109\n    176,1: 110\n    177,1: 111\n    178,1: 112\n    179,1: 113\n    18,1: 114\n    180,1: 115\n    181,1: 116\n    182,1: 117\n    182,2: 118\n    183,1: 119\n    184,1: 120\n    185,1: 121\n    186,1: 122\n    187,1: 123\n    188,1: 124\n    189,1: 125\n    19,1: 126\n    190,1: 127\n    191,1: 128\n    192,1: 129\n    193,1: 130\n    194,1: 131\n    195,1: 132\n    196,1: 133\n    197,1: 134\n    198,1: 135\n    199,1: 136\n    2,1: 137\n    2,2: 138\n    20,1: 139\n    200,1: 140\n    201,1: 141\n    202,1: 142\n    203,1: 143\n    204,1: 144\n    205,2: 145\n    205,3: 146\n    205,4: 147\n    205,5: 148\n    205,6: 149\n    206,1: 150\n    207,1: 151\n    208,1: 152\n    209,1: 153\n    21,1: 154\n    210,1: 155\n    211,1: 156\n    212,1: 157\n    213,1: 158\n    214,1: 159\n    215,1: 160\n    216,1: 161\n    217,1: 162\n    218,1: 163\n    219,1: 164\n    219,2: 165\n    22,1: 166\n    220,1: 167\n    221,1: 168\n    222,1: 169\n    223,1: 170\n    224,1: 171\n    225,1: 172\n    226,1: 173\n    227,1: 174\n    228,1: 175\n    229,1: 176\n    23,1: 177\n    230,1: 178\n    231,1: 179\n    232,1: 180\n    233,1: 181\n    234,1: 182\n    235,1: 183\n    236,1: 184\n    237,1: 185\n    238,1: 186\n    239,1: 187\n    239,2: 188\n    24,1: 189\n    240,1: 190\n    241,1: 191\n    242,1: 192\n    243,1: 193\n    244,1: 194\n    244,2: 195\n    245,1: 196\n    245,2: 197\n    246,1: 198\n    247,1: 199\n    248,1: 200\n    249,1: 201\n    25,1: 202\n    250,1: 203\n    251,1: 204\n    251,2: 205\n    252,1: 206\n    253,1: 207\n    254,1: 208\n    255,1: 209\n    256,1: 210\n    257,1: 211\n    258,1: 212\n    259,1: 213\n    26,1: 214\n    260,1: 215\n    261,1: 216\n    262,1: 217\n    263,1: 218\n    264,1: 219\n    265,1: 220\n    266,1: 221\n    267,1: 222\n    268,1: 223\n    269,1: 224\n    27,1: 225\n    270,1: 226\n    271,1: 227\n    272,1: 228\n    273,1: 229\n    274,1: 230\n    275,1: 231\n    276,1: 232\n    277,1: 233\n    278,1: 234\n    279,1: 235\n    28,1: 236\n    280,1: 237\n    281,1: 238\n    282,1: 239\n    283,1: 240\n    284,1: 241\n    285,1: 242\n    286,1: 243\n    287,1: 244\n    288,1: 245\n    289,1: 246\n    29,1: 247\n    290,1: 248\n    291,1: 249\n    292,1: 250\n    293,1: 251\n    293,2: 252\n    294,1: 253\n    295,1: 254\n    295,2: 255\n    296,1: 256\n    297,1: 257\n    298,1: 258\n    299,1: 259\n    3,1: 260\n    30,1: 261\n    300,1: 262\n    301,1: 263\n    302,1: 264\n    303,1: 265\n    304,1: 266\n    305,1: 267\n    306,1: 268\n    307,1: 269\n    308,1: 270\n    309,1: 271\n    309,2: 272\n    31,1: 273\n    310,1: 274\n    310,2: 275\n    311,1: 276\n    312,1: 277\n    313,1: 278\n    314,1: 279\n    315,1: 280\n    316,1: 281\n    317,1: 282\n    317,2: 283\n    318,1: 284\n    318,2: 285\n    319,1: 286\n    319,2: 287\n    32,1: 288\n    320,1: 289\n    321,1: 290\n    322,1: 291\n    323,1: 292\n    324,1: 293\n    324,3: 294\n    325,1: 295\n    326,1: 296\n    327,1: 297\n    328,1: 298\n    328,3: 299\n    329,1: 300\n    33,1: 301\n    330,1: 302\n    331,1: 303\n    332,1: 304\n    333,1: 305\n    334,1: 306\n    335,1: 307\n    335,2: 308\n    336,1: 309\n    337,1: 310\n    338,1: 311\n    339,1: 312\n    34,1: 313\n    340,1: 314\n    341,2: 315\n    342,1: 316\n    343,1: 317\n    344,1: 318\n    345,2: 319\n    346,1: 320\n    347,1: 321\n    348,1: 322\n    349,2: 323\n    35,1: 324\n    350,1: 325\n    350,2: 326\n    351,1: 327\n    352,2: 328\n    353,1: 329\n    354,1: 330\n    355,1: 331\n    356,1: 332\n    357,1: 333\n    358,1: 334\n    359,1: 335\n    36,1: 336\n    360,1: 337\n    361,1: 338\n    361,2: 339\n    362,1: 340\n    363,1: 341\n    364,1: 342\n    365,1: 343\n    366,1: 344\n    367,1: 345\n    368,1: 346\n    369,1: 347\n    37,1: 348\n    370,1: 349\n    370,2: 350\n    371,1: 351\n    372,1: 352\n    373,1: 353\n    374,1: 354\n    375,1: 355\n    376,1: 356\n    377,1: 357\n    378,1: 358\n    379,1: 359\n    38,1: 360\n    380,1: 361\n    381,1: 362\n    382,1: 363\n    382,2: 364\n    383,1: 365\n    384,1: 366\n    385,1: 367\n    385,2: 368\n    386,1: 369\n    387,1: 370\n    388,1: 371\n    389,1: 372\n    39,1: 373\n    39,2: 374\n    390,1: 375\n    391,1: 376\n    392,1: 377\n    393,1: 378\n    394,1: 379\n    395,1: 380\n    396,1: 381\n    397,1: 382\n    398,1: 383\n    399,1: 384\n    4,1: 385\n    40,1: 386\n    400,1: 387\n    401,1: 388\n    402,1: 389\n    403,1: 390\n    404,1: 391\n    405,1: 392\n    406,1: 393\n    406,2: 394\n    407,1: 395\n    408,1: 396\n    409,1: 397\n    41,1: 398\n    410,1: 399\n    411,1: 400\n    412,1: 401\n    413,1: 402\n    413,2: 403\n    414,1: 404\n    415,1: 405\n    416,1: 406\n    417,1: 407\n    417,2: 408\n    418,1: 409\n    418,2: 410\n    419,1: 411\n    42,1: 412\n    420,1: 413\n    421,1: 414\n    422,1: 415\n    423,1: 416\n    424,1: 417\n    425,1: 418\n    426,1: 419\n    427,1: 420\n    428,1: 421\n    429,1: 422\n    43,1: 423\n    430,1: 424\n    431,1: 425\n    432,1: 426\n    433,1: 427\n    434,1: 428\n    435,1: 429\n    436,1: 430\n    437,1: 431\n    438,1: 432\n    439,1: 433\n    44,2: 434\n    440,1: 435\n    441,1: 436\n    442,1: 437\n    443,1: 438\n    444,1: 439\n    445,1: 440\n    446,1: 441\n    447,1: 442\n    448,1: 443\n    449,1: 444\n    45,1: 445\n    450,1: 446\n    451,1: 447\n    452,1: 448\n    453,1: 449\n    454,1: 450\n    455,1: 451\n    456,1: 452\n    457,1: 453\n    458,1: 454\n    459,1: 455\n    459,2: 456\n    46,1: 457\n    460,1: 458\n    461,1: 459\n    462,1: 460\n    463,1: 461\n    464,1: 462\n    465,1: 463\n    466,1: 464\n    467,1: 465\n    468,1: 466\n    469,1: 467\n    47,1: 468\n    470,1: 469\n    471,1: 470\n    472,1: 471\n    473,1: 472\n    474,1: 473\n    475,1: 474\n    476,1: 475\n    477,1: 476\n    478,1: 477\n    479,1: 478\n    48,1: 479\n    480,1: 480\n    481,1: 481\n    482,1: 482\n    483,1: 483\n    484,1: 484\n    485,1: 485\n    486,1: 486\n    487,1: 487\n    488,1: 488\n    489,1: 489\n    49,1: 490\n    490,1: 491\n    491,1: 492\n    492,1: 493\n    493,1: 494\n    493,2: 495\n    493,3: 496\n    493,4: 497\n    494,2: 498\n    495,1: 499\n    496,1: 500\n    497,1: 501\n    497,2: 502\n    498,1: 503\n    499,1: 504\n    5,1: 505\n    50,1: 506\n    500,1: 507\n    500,2: 508\n    501,1: 509\n    502,1: 510\n    503,1: 511\n    504,1: 512\n    505,1: 513\n    506,1: 514\n    507,1: 515\n    508,1: 516\n    509,1: 517\n    51,1: 518\n    510,1: 519\n    511,1: 520\n    512,1: 521\n    513,1: 522\n    514,1: 523\n    515,1: 524\n    515,2: 525\n    516,1: 526\n    517,1: 527\n    518,1: 528\n    519,1: 529\n    52,1: 530\n    520,1: 531\n    521,1: 532\n    522,1: 533\n    523,1: 534\n    524,1: 535\n    525,1: 536\n    526,1: 537\n    527,1: 538\n    528,1: 539\n    529,1: 540\n    53,1: 541\n    530,1: 542\n    531,1: 543\n    532,1: 544\n    533,1: 545\n    534,1: 546\n    535,1: 547\n    536,1: 548\n    537,1: 549\n    538,1: 550\n    539,1: 551\n    54,1: 552\n    540,1: 553\n    541,1: 554\n    542,1: 555\n    543,1: 556\n    544,1: 557\n    545,1: 558\n    546,1: 559\n    547,1: 560\n    548,1: 561\n    549,1: 562\n    55,1: 563\n    550,1: 564\n    551,1: 565\n    552,1: 566\n    553,1: 567\n    554,1: 568\n    555,1: 569\n    556,1: 570\n    556,2: 571\n    557,1: 572\n    558,1: 573\n    558,2: 574\n    559,1: 575\n    56,1: 576\n    560,1: 577\n    561,1: 578\n    562,1: 579\n    563,1: 580\n    564,1: 581\n    565,1: 582\n    566,1: 583\n    567,1: 584\n    568,1: 585\n    569,1: 586\n    57,1: 587\n    570,1: 588\n    571,1: 589\n    572,1: 590\n    573,1: 591\n    574,1: 592\n    575,1: 593\n    576,1: 594\n    577,1: 595\n    578,1: 596\n    579,1: 597\n    58,1: 598\n    580,1: 599\n    581,1: 600\n    582,1: 601\n    583,1: 602\n    584,1: 603\n    585,1: 604\n    586,1: 605\n    586,2: 606\n    587,2: 607\n    588,2: 608\n    589,1: 609\n    59,1: 610\n    590,2: 611\n    591,2: 612\n    592,2: 613\n    593,2: 614\n    594,2: 615\n    595,1: 616\n    596,2: 617\n    597,2: 618\n    597,3: 619\n    598,2: 620\n    599,2: 621\n    6,1: 622\n    60,1: 623\n    600,1: 624\n    601,2: 625\n    602,2: 626\n    603,1: 627\n    604,2: 628\n    605,2: 629\n    606,1: 630\n    607,1: 631\n    608,1: 632\n    609,2: 633\n    61,1: 634\n    610,1: 635\n    611,3: 636\n    612,2: 637\n    613,2: 638\n    614,2: 639\n    615,2: 640\n    615,3: 641\n    616,2: 642\n    617,1: 643\n    617,3: 644\n    618,2: 645\n    619,2: 646\n    62,1: 647\n    620,2: 648\n    621,2: 649\n    622,2: 650\n    623,1: 651\n    624,2: 652\n    625,2: 653\n    626,2: 654\n    627,2: 655\n    628,2: 656\n    629,2: 657\n    63,1: 658\n    630,1: 659\n    631,2: 660\n    632,2: 661\n    632,3: 662\n    633,1: 663\n    634,2: 664\n    634,3: 665\n    635,2: 666\n    636,2: 667\n    636,3: 668\n    637,2: 669\n    638,2: 670\n    639,1: 671\n    64,1: 672\n    640,2: 673\n    641,1: 674\n    642,2: 675\n    643,2: 676\n    644,1: 677\n    645,2: 678\n    646,2: 679\n    647,2: 680\n    648,2: 681\n    649,2: 682\n    65,1: 683\n    650,2: 684\n    651,1: 685\n    652,1: 686\n    653,2: 687\n    654,2: 688\n    655,2: 689\n    656,2: 690\n    657,2: 691\n    658,2: 692\n    659,2: 693\n    66,1: 694\n    660,2: 695\n    661,2: 696\n    662,2: 697\n    663,1: 698\n    664,2: 699\n    665,2: 700\n    666,2: 701\n    667,2: 702\n    668,1: 703\n    669,2: 704\n    67,1: 705\n    670,2: 706\n    671,2: 707\n    672,2: 708\n    673,2: 709\n    674,2: 710\n    675,2: 711\n    676,2: 712\n    677,2: 713\n    678,1: 714\n    679,2: 715\n    68,1: 716\n    680,1: 717\n    681,2: 718\n    682,2: 719\n    683,2: 720\n    684,2: 721\n    685,2: 722\n    685,3: 723\n    686,2: 724\n    687,1: 725\n    688,2: 726\n    689,2: 727\n    69,1: 728\n    690,2: 729\n    691,2: 730\n    692,2: 731\n    693,2: 732\n    694,2: 733\n    695,2: 734\n    696,1: 735\n    697,2: 736\n    698,2: 737\n    699,2: 738\n    7,1: 739\n    70,1: 740\n    700,2: 741\n    701,2: 742\n    702,2: 743\n    703,1: 744\n    704,2: 745\n    705,2: 746\n    706,1: 747\n    707,2: 748\n    708,2: 749\n    709,2: 750\n    71,1: 751\n    710,1: 752\n    711,2: 753\n    712,2: 754\n    713,2: 755\n    714,2: 756\n    715,2: 757\n    716,1: 758\n    717,2: 759\n    718,2: 760\n    719,1: 761\n    72,1: 762\n    720,2: 763\n    721,1: 764\n    722,2: 765\n    723,2: 766\n    724,2: 767\n    725,2: 768\n    726,1: 769\n    727,2: 770\n    728,2: 771\n    729,2: 772\n    73,1: 773\n    73,2: 774\n    730,1: 775\n    731,1: 776\n    732,1: 777\n    733,2: 778\n    734,2: 779\n    735,2: 780\n    736,3: 781\n    737,2: 782\n    737,3: 783\n    738,2: 784\n    739,2: 785\n    74,1: 786\n    740,1: 787\n    741,2: 788\n    742,1: 789\n    743,2: 790\n    744,2: 791\n    745,1: 792\n    746,2: 793\n    747,2: 794\n    748,1: 795\n    749,1: 796\n    75,1: 797\n    750,2: 798\n    751,1: 799\n    752,2: 800\n    753,2: 801\n    754,2: 802\n    755,2: 803\n    756,2: 804\n    757,2: 805\n    758,2: 806\n    759,2: 807\n    76,1: 808\n    76,2: 809\n    760,1: 810\n    761,2: 811\n    762,2: 812\n    762,3: 813\n    763,2: 814\n    764,2: 815\n    765,2: 816\n    766,1: 817\n    767,2: 818\n    768,2: 819\n    769,2: 820\n    77,1: 821\n    770,2: 822\n    771,1: 823\n    772,2: 824\n    773,2: 825\n    774,2: 826\n    775,1: 827\n    776,2: 828\n    777,2: 829\n    777,3: 830\n    777,4: 831\n    778,1: 832\n    779,1: 833\n    78,1: 834\n    780,1: 835\n    780,3: 836\n    781,2: 837\n    782,3: 838\n    783,1: 839\n    784,2: 840\n    785,2: 841\n    786,2: 842\n    787,2: 843\n    788,1: 844\n    789,2: 845\n    79,1: 846\n    790,2: 847\n    791,2: 848\n    792,2: 849\n    793,2: 850\n    794,2: 851\n    795,2: 852\n    796,2: 853\n    797,2: 854\n    798,1: 855\n    799,2: 856\n    8,1: 857\n    80,1: 858\n    800,2: 859\n    801,1: 860\n    802,1: 861\n    803,1: 862\n    803,3: 863\n    804,2: 864\n    805,2: 865\n    806,2: 866\n    807,1: 867\n    808,1: 868\n    809,2: 869\n    81,1: 870\n    810,1: 871\n    811,2: 872\n    812,2: 873\n    813,2: 874\n    814,2: 875\n    815,1: 876\n    815,3: 877\n    816,2: 878\n    817,2: 879\n    818,2: 880\n    819,2: 881\n    82,1: 882\n    820,2: 883\n    821,2: 884\n    822,2: 885\n    823,1: 886\n    824,2: 887\n    825,2: 888\n    826,2: 889\n    827,2: 890\n    828,2: 891\n    829,2: 892\n    83,1: 893\n    830,2: 894\n    831,1: 895\n    832,2: 896\n    833,2: 897\n    834,1: 898\n    835,2: 899\n    836,2: 900\n    837,1: 901\n    837,3: 902\n    838,2: 903\n    839,2: 904\n    84,1: 905\n    840,2: 906\n    841,2: 907\n    842,1: 908\n    843,2: 909\n    844,1: 910\n    845,2: 911\n    846,1: 912\n    847,2: 913\n    848,2: 914\n    849,1: 915\n    85,1: 916\n    850,2: 917\n    851,2: 918\n    852,2: 919\n    853,2: 920\n    854,2: 921\n    855,2: 922\n    856,2: 923\n    857,2: 924\n    858,2: 925\n    859,2: 926\n    86,1: 927\n    860,2: 928\n    861,2: 929\n    862,2: 930\n    863,1: 931\n    864,2: 932\n    865,2: 933\n    866,2: 934\n    867,2: 935\n    868,2: 936\n    869,2: 937\n    87,1: 938\n    870,2: 939\n    871,2: 940\n    872,2: 941\n    873,2: 942\n    874,1: 943\n    875,1: 944\n    876,2: 945\n    877,2: 946\n    878,2: 947\n    879,1: 948\n    88,1: 949\n    880,2: 950\n    881,2: 951\n    882,1: 952\n    883,2: 953\n    884,2: 954\n    885,3: 955\n    886,2: 956\n    887,1: 957\n    888,2: 958\n    889,2: 959\n    89,1: 960\n    890,2: 961\n    891,2: 962\n    892,2: 963\n    893,2: 964\n    894,2: 965\n    895,2: 966\n    896,2: 967\n    897,2: 968\n    898,2: 969\n    899,2: 970\n    9,1: 971\n    90,1: 972\n    900,2: 973\n    901,2: 974\n    902,1: 975\n    903,1: 976\n    904,2: 977\n    905,2: 978\n    906,2: 979\n    907,2: 980\n    908,2: 981\n    909,2: 982\n    91,1: 983\n    91,2: 984\n    91,3: 985\n    910,2: 986\n    911,2: 987\n    912,2: 988\n    913,1: 989\n    914,2: 990\n    915,2: 991\n    915,3: 992\n    916,2: 993\n    917,2: 994\n    918,2: 995\n    919,1: 996\n    92,1: 997\n    920,2: 998\n    921,2: 999\n    922,2: 1000\n    923,2: 1001\n    924,2: 1002\n    925,1: 1003\n    925,3: 1004\n    926,2: 1005\n    927,1: 1006\n    927,3: 1007\n    928,2: 1008\n    929,2: 1009\n    93,1: 1010\n    93,2: 1011\n    93,3: 1012\n    930,2: 1013\n    931,2: 1014\n    932,2: 1015\n    933,2: 1016\n    934,2: 1017\n    935,2: 1018\n    936,2: 1019\n    937,2: 1020\n    938,2: 1021\n    939,1: 1022\n    94,1: 1023\n    940,2: 1024\n    941,2: 1025\n    942,2: 1026\n    943,1: 1027\n    944,2: 1028\n    945,2: 1029\n    946,2: 1030\n    947,1: 1031\n    948,2: 1032\n    949,2: 1033\n    95,1: 1034\n    950,2: 1035\n    951,2: 1036\n    952,2: 1037\n    953,2: 1038\n    954,2: 1039\n    954,3: 1040\n    955,1: 1041\n    956,2: 1042\n    957,2: 1043\n    958,2: 1044\n    959,2: 1045\n    96,1: 1046\n    960,1: 1047\n    961,2: 1048\n    962,2: 1049\n    963,2: 1050\n    964,2: 1051\n    965,2: 1052\n    966,2: 1053\n    967,2: 1054\n    968,1: 1055\n    969,2: 1056\n    969,3: 1057\n    969,4: 1058\n    97,1: 1059\n    970,2: 1060\n    971,2: 1061\n    972,1: 1062\n    973,1: 1063\n    973,3: 1064\n    974,2: 1065\n    974,3: 1066\n    975,2: 1067\n    976,2: 1068\n    977,2: 1069\n    978,2: 1070\n    979,2: 1071\n    98,1: 1072\n    980,1: 1073\n    981,1: 1074\n    982,2: 1075\n    983,2: 1076\n    984,2: 1077\n    985,2: 1078\n    986,1: 1079\n    987,2: 1080\n    988,2: 1081\n    989,2: 1082\n    99,1: 1083\n    99,2: 1084\n    990,2: 1085\n    991,2: 1086\n    992,2: 1087\n    993,2: 1088\n    994,1: 1089\n    995,2: 1090\n    996,2: 1091\n    997,2: 1092\n    998,1: 1093\n    999,2: 1094\n  - {}\n  - *1\n- !!perl/array:Graph::AdjacencyMap::Heavy\n  - 59\n  - 136\n  - 2\n  - ''0'': &2\n    - 8\n    - 9\n    ''1'': &3\n    - 32\n    - 33\n    ''10'': &4\n    - 69\n    - 70\n    ''11'': &5\n    - 137\n    - 138\n    ''12'': &6\n    - 84\n    - 85\n    ''13'': &7\n    - 85\n    - 86\n    ''14'': &8\n    - 117\n    - 118\n    ''15'': &9\n    - 146\n    - 149\n    ''16'': &10\n    - 251\n    - 252\n    ''17'': &11\n    - 282\n    - 283\n    ''18'': &12\n    - 402\n    - 403\n    ''19'': &13\n    - 407\n    - 408\n    ''2'': &14\n    - 286\n    - 287\n    ''20'': &15\n    - 507\n    - 508\n    ''21'': &16\n    - 524\n    - 525\n    ''22'': &17\n    - 667\n    - 668\n    ''23'': &18\n    - 722\n    - 723\n    ''24'': &19\n    - 808\n    - 809\n    ''25'': &20\n    - 812\n    - 813\n    ''26'': &21\n    - 991\n    - 992\n    ''27'': &22\n    - 1039\n    - 1040\n    ''28'': &23\n    - 10\n    - 22\n    ''29'': &24\n    - 11\n    - 21\n    ''3'': &25\n    - 307\n    - 308\n    ''30'': &26\n    - 103\n    - 104\n    ''31'': &27\n    - 164\n    - 165\n    ''32'': &28\n    - 862\n    - 863\n    ''33'': &29\n    - 194\n    - 195\n    ''34'': &30\n    - 254\n    - 255\n    ''35'': &31\n    - 271\n    - 272\n    ''36'': &32\n    - 274\n    - 275\n    ''37'': &33\n    - 293\n    - 294\n    ''38'': &34\n    - 298\n    - 299\n    ''39'': &35\n    - 367\n    - 368\n    ''4'': &36\n    - 325\n    - 326\n    ''40'': &37\n    - 373\n    - 374\n    ''41'': &38\n    - 409\n    - 410\n    ''42'': &39\n    - 773\n    - 774\n    ''43'':\n    - 494\n    - 496\n    ''44'':\n    - 494\n    - 495\n    ''45'':\n    - 573\n    - 574\n    ''46'':\n    - 618\n    - 619\n    ''47'':\n    - 643\n    - 644\n    ''48'':\n    - 1063\n    - 1064\n    ''49'':\n    - 876\n    - 877\n    ''5'': &40\n    - 338\n    - 339\n    ''50'':\n    - 901\n    - 902\n    ''51'':\n    - 1003\n    - 1004\n    ''52'':\n    - 983\n    - 984\n    ''53'':\n    - 1006\n    - 1007\n    ''54'':\n    - 1010\n    - 1011\n    ''55'':\n    - 1010\n    - 1012\n    ''56'':\n    - 1056\n    - 1058\n    ''57'':\n    - 1057\n    - 1058\n    ''58'':\n    - 1083\n    - 1084\n    ''6'': &41\n    - 495\n    - 496\n    ''7'': &42\n    - 782\n    - 783\n    ''8'': &43\n    - 1065\n    - 1066\n    ''9'': &44\n    - 61\n    - 62\n  - ''10'':\n      ''22'':\n      - 28\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: Ãªtre humain\n          reading_b: Ãªtre humain\n          scope: local\n          type: transposition\n    ''1003'':\n      ''1004'':\n      - 51\n      - 1\n      - object: &45 !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: gender\n          reading_a: seul\n          reading_b: seule\n          scope: global\n          type: grammatical\n    ''1006'':\n      ''1007'':\n      - 53\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: gender\n          reading_a: quel\n          reading_b: quelle\n          scope: global\n          type: grammatical\n    ''1010'':\n      ''1011'':\n      - 54\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: verb tense\n          reading_a: croit\n          reading_b: croient\n          scope: global\n          type: grammatical\n      ''1012'':\n      - 55\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: verb tense\n          reading_a: croit\n          reading_b: crois\n          scope: global\n          type: grammatical\n    ''103'':\n      ''104'':\n      - 30\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: 1p/3p (also spelling)\n          reading_a: n''atteins\n          reading_b: natteint\n          scope: global\n          type: grammatical\n    ''1039'':\n      ''1040'':\n      - 27\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: clairière\n          reading_b: clrière\n          scope: global\n          type: spelling\n    ''1056'':\n      ''1058'':\n      - 56\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: verb mood (also spelling)\n          reading_a: nai\n          reading_b: n''aie\n          scope: global\n          type: grammatical\n    ''1057'':\n      ''1058'':\n      - 57\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: verb tense (also spelling)\n          reading_a: naies\n          reading_b: n''aie\n          scope: global\n          type: grammatical\n    ''1063'':\n      ''1064'':\n      - 48\n      - 1\n      - object: &46 !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: def/indef article\n          reading_a: les\n          reading_b: des\n          scope: global\n          type: grammatical\n    ''1065'':\n      ''1066'':\n      - 8\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: Lois\n          reading_b: lois\n          scope: global\n          type: orthographic\n    ''1083'':\n      ''1084'':\n      - 58\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: verb tense (also spelling)\n          reading_a: m''inspirent\n          reading_b: minspire\n          scope: global\n          type: grammatical\n    ''11'':\n      ''21'':\n      - 29\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: lézard\n          reading_b: lézard\n          scope: local\n          type: transposition\n    ''117'':\n      ''118'':\n      - 14\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: proi\n          reading_b: proie\n          scope: global\n          type: spelling\n    ''137'':\n      ''138'':\n      - 11\n      - 1\n      - object: &47 !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: rassassier\n          reading_b: rassasier\n          scope: global\n          type: spelling\n    ''146'':\n      ''149'':\n      - 15\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: cîme\n          reading_b: cime\n          scope: global\n          type: spelling\n    ''164'':\n      ''165'':\n      - 31\n      - 1\n      - object: &48 !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: ''1p poss/main ''\n          reading_a: les\n          reading_b: mes\n          scope: global\n          type: lexical\n    ''194'':\n      ''195'':\n      - 33\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: verb tense\n          reading_a: ressent\n          reading_b: ressens\n          scope: global\n          type: grammatical\n    ''251'':\n      ''252'':\n      - 16\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: granite\n          reading_b: granit\n          scope: global\n          type: spelling\n    ''254'':\n      ''255'':\n      - 34\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: gender\n          reading_a: dure\n          reading_b: dur\n          scope: global\n          type: grammatical\n    ''271'':\n      ''272'':\n      - 35\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: sg/pl or noun/verb\n          reading_a: Ãªtres\n          reading_b: Ãªtre\n          scope: global\n          type: grammatical\n    ''274'':\n      ''275'':\n      - 36\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: sg/pl\n          reading_a: conviée\n          reading_b: conviées\n          scope: global\n          type: grammatical\n    ''282'':\n      ''283'':\n      - 17\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: chuchottements\n          reading_b: chuchotements\n          scope: global\n          type: spelling\n    ''286'':\n      ''287'':\n      - 2\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: je\n          reading_b: Je\n          scope: global\n          type: orthographic\n    ''293'':\n      ''294'':\n      - 37\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: m.sg./f.pl.\n          reading_a: toutes\n          reading_b: tous\n          scope: global\n          type: grammatical\n    ''298'':\n      ''299'':\n      - 38\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: sg/pl\n          reading_a: talents\n          reading_b: talent\n          scope: global\n          type: grammatical\n    ''307'':\n      ''308'':\n      - 3\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: Toi-même\n          reading_b: toi-même\n          scope: global\n          type: orthographic\n    ''32'':\n      ''33'':\n      - 1\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: Comme\n          reading_b: comme\n          scope: global\n          type: orthographic\n    ''325'':\n      ''326'':\n      - 4\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: Méprise\n          reading_b: méprise\n          scope: global\n          type: orthographic\n    ''338'':\n      ''339'':\n      - 5\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: tranche\n          reading_b: Tranche\n          scope: global\n          type: orthographic\n    ''367'':\n      ''368'':\n      - 39\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: sg/pl; sense change\n          reading_a: gourmandise\n          reading_b: gourmandises\n          scope: global\n          type: grammatical\n    ''373'':\n      ''374'':\n      - 40\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: opposites\n          reading_a: Jai\n          reading_b: Je n''ai\n          scope: global\n          type: lexical\n    ''402'':\n      ''403'':\n      - 18\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: subire\n          reading_b: subir\n          scope: global\n          type: spelling\n    ''407'':\n      ''408'':\n      - 19\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: grill\n          reading_b: gril\n          scope: global\n          type: spelling\n    ''409'':\n      ''410'':\n      - 41\n      - 1\n      - object: &49 !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: sg/pl\n          reading_a: de\n          reading_b: des\n          scope: global\n          type: grammatical\n    ''494'':\n      ''495'':\n      - 44\n      - 1\n      - object: &50 !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: verb tense\n          reading_a: Perd\n          reading_b: Perds\n          scope: global\n          type: grammatical\n      ''496'':\n      - 43\n      - 1\n      - object: *50\n    ''495'':\n      ''496'':\n      - 6\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: perds\n          reading_b: Perds\n          scope: global\n          type: orthographic\n    ''507'':\n      ''508'':\n      - 20\n      - 1\n      - object: &51 !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: trêve\n          reading_b: trève\n          scope: global\n          type: spelling\n    ''524'':\n      ''525'':\n      - 21\n      - 1\n      - object: *51\n    ''573'':\n      ''574'':\n      - 45\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: preposition opposites\n          reading_a: au\n          reading_b: du\n          scope: global\n          type: lexical\n    ''61'':\n      ''62'':\n      - 9\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: connaît\n          reading_b: connait\n          scope: global\n          type: spelling\n    ''618'':\n      ''619'':\n      - 46\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: verb mood\n          reading_a: puisse\n          reading_b: peut\n          scope: global\n          type: grammatical\n    ''643'':\n      ''644'':\n      - 47\n      - 1\n      - object: *46\n    ''667'':\n      ''668'':\n      - 22\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: défit\n          reading_b: défi\n          scope: global\n          type: spelling\n    ''69'':\n      ''70'':\n      - 10\n      - 1\n      - object: *47\n    ''722'':\n      ''723'':\n      - 23\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: n''enrichit\n          reading_b: nenrichi\n          scope: global\n          type: spelling\n    ''773'':\n      ''774'':\n      - 42\n      - 1\n      - object: *49\n    ''782'':\n      ''783'':\n      - 7\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: elle\n          reading_b: Elle\n          scope: global\n          type: orthographic\n    ''8'':\n      ''9'':\n      - 0\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: contraction with following\n          reading_a: le\n          reading_b: l\n          scope: global\n          type: orthographic\n    ''808'':\n      ''809'':\n      - 24\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: rationnaliste\n          reading_b: rationaliste\n          scope: global\n          type: spelling\n    ''812'':\n      ''813'':\n      - 25\n      - 1\n      - object: &52 !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: nest\n          reading_b: n''est\n          scope: global\n          type: spelling\n    ''84'':\n      ''85'':\n      - 12\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: traqu\n          reading_b: traque\n          scope: global\n          type: spelling\n    ''85'':\n      ''86'':\n      - 13\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          reading_a: traque\n          reading_b: tracque\n          scope: global\n          type: spelling\n    ''862'':\n      ''863'':\n      - 32\n      - 1\n      - object: *48\n    ''876'':\n      ''877'':\n      - 49\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: reflexive (also spelling)\n          reading_a: simaginer\n          reading_b: imaginer\n          scope: global\n          type: grammatical\n    ''901'':\n      ''902'':\n      - 50\n      - 1\n      - object: *45\n    ''983'':\n      ''984'':\n      - 52\n      - 1\n      - object: !!perl/hash:Text::Tradition::Collation::Relationship\n          annotation: gender\n          reading_a: celui\n          reading_b: celle\n          scope: global\n          type: grammatical\n    ''991'':\n      ''992'':\n      - 26\n      - 1\n      - object: *52\n- ~\n- ~\n- - 1139\n  - ''10'':\n    - &53\n      - ''28''\n      - *23\n    ''103'':\n    - &54\n      - ''30''\n      - *26\n    ''1039'':\n    - &55\n      - ''27''\n      - *22\n    ''104'':\n    - *54\n    ''1040'':\n    - *55\n    ''1065'':\n    - &56\n      - ''8''\n      - *43\n    ''1066'':\n    - *56\n    ''11'':\n    - &57\n      - ''29''\n      - *24\n    ''117'':\n    - &58\n      - ''14''\n      - *8\n    ''118'':\n    - *58\n    ''137'':\n    - &59\n      - ''11''\n      - *5\n    ''138'':\n    - *59\n    ''146'':\n    - &60\n      - ''15''\n      - *9\n    ''149'':\n    - *60\n    ''164'':\n    - &61\n      - ''31''\n      - *27\n    ''165'':\n    - *61\n    ''194'':\n    - &62\n      - ''33''\n      - *29\n    ''195'':\n    - *62\n    ''21'':\n    - *57\n    ''22'':\n    - *53\n    ''251'':\n    - &63\n      - ''16''\n      - *10\n    ''252'':\n    - *63\n    ''254'':\n    - &64\n      - ''34''\n      - *30\n    ''255'':\n    - *64\n    ''271'':\n    - &65\n      - ''35''\n      - *31\n    ''272'':\n    - *65\n    ''274'':\n    - &66\n      - ''36''\n      - *32\n    ''275'':\n    - *66\n    ''282'':\n    - &67\n      - ''17''\n      - *11\n    ''283'':\n    - *67\n    ''286'':\n    - &68\n      - ''2''\n      - *14\n    ''287'':\n    - *68\n    ''293'':\n    - &69\n      - ''37''\n      - *33\n    ''294'':\n    - *69\n    ''298'':\n    - &70\n      - ''38''\n      - *34\n    ''299'':\n    - *70\n    ''307'':\n    - &71\n      - ''3''\n      - *25\n    ''308'':\n    - *71\n    ''32'':\n    - &72\n      - ''1''\n      - *3\n    ''325'':\n    - &73\n      - ''4''\n      - *36\n    ''326'':\n    - *73\n    ''33'':\n    - *72\n    ''338'':\n    - &74\n      - ''5''\n      - *40\n    ''339'':\n    - *74\n    ''367'':\n    - &75\n      - ''39''\n      - *35\n    ''368'':\n    - *75\n    ''373'':\n    - &76\n      - ''40''\n      - *37\n    ''374'':\n    - *76\n    ''402'':\n    - &77\n      - ''18''\n      - *12\n    ''403'':\n    - *77\n    ''407'':\n    - &78\n      - ''19''\n      - *13\n    ''408'':\n    - *78\n    ''409'':\n    - &79\n      - ''41''\n      - *38\n    ''410'':\n    - *79\n    ''495'':\n    - &80\n      - ''6''\n      - *41\n    ''496'':\n    - *80\n    ''507'':\n    - &81\n      - ''20''\n      - *15\n    ''508'':\n    - *81\n    ''524'':\n    - &82\n      - ''21''\n      - *16\n    ''525'':\n    - *82\n    ''61'':\n    - &83\n      - ''9''\n      - *44\n    ''62'':\n    - *83\n    ''667'':\n    - &84\n      - ''22''\n      - *17\n    ''668'':\n    - *84\n    ''69'':\n    - &85\n      - ''10''\n      - *4\n    ''70'':\n    - *85\n    ''722'':\n    - &86\n      - ''23''\n      - *18\n    ''723'':\n    - *86\n    ''773'':\n    - &87\n      - ''42''\n      - *39\n    ''774'':\n    - *87\n    ''782'':\n    - &88\n      - ''7''\n      - *42\n    ''783'':\n    - *88\n    ''8'':\n    - &89\n      - ''0''\n      - *2\n    ''808'':\n    - &90\n      - ''24''\n      - *19\n    ''809'':\n    - *90\n    ''812'':\n    - &91\n      - ''25''\n      - *20\n    ''813'':\n    - *91\n    ''84'':\n    - &92\n      - ''12''\n      - *6\n    ''85'':\n    - &93\n      - ''13''\n      - *7\n    - *92\n    ''86'':\n    - *93\n    ''862'':\n    - &94\n      - ''32''\n      - *28\n    ''863'':\n    - *94\n    ''9'':\n    - *89\n    ''991'':\n    - &95\n      - ''26''\n      - *21\n    ''992'':\n    - *95\n- - 1139\n  - ''10'':\n    - &96\n      - ''28''\n      - *23\n    ''103'':\n    - &97\n      - ''30''\n      - *26\n    ''1039'':\n    - &98\n      - ''27''\n      - *22\n    ''104'':\n    - *97\n    ''1040'':\n    - *98\n    ''1065'':\n    - &99\n      - ''8''\n      - *43\n    ''1066'':\n    - *99\n    ''11'':\n    - &100\n      - ''29''\n      - *24\n    ''117'':\n    - &101\n      - ''14''\n      - *8\n    ''118'':\n    - *101\n    ''137'':\n    - &102\n      - ''11''\n      - *5\n    ''138'':\n    - *102\n    ''146'':\n    - &103\n      - ''15''\n      - *9\n    ''149'':\n    - *103\n    ''164'':\n    - &104\n      - ''31''\n      - *27\n    ''165'':\n    - *104\n    ''194'':\n    - &105\n      - ''33''\n      - *29\n    ''195'':\n    - *105\n    ''21'':\n    - *100\n    ''22'':\n    - *96\n    ''251'':\n    - &106\n      - ''16''\n      - *10\n    ''252'':\n    - *106\n    ''254'':\n    - &107\n      - ''34''\n      - *30\n    ''255'':\n    - *107\n    ''271'':\n    - &108\n      - ''35''\n      - *31\n    ''272'':\n    - *108\n    ''274'':\n    - &109\n      - ''36''\n      - *32\n    ''275'':\n    - *109\n    ''282'':\n    - &110\n      - ''17''\n      - *11\n    ''283'':\n    - *110\n    ''286'':\n    - &111\n      - ''2''\n      - *14\n    ''287'':\n    - *111\n    ''293'':\n    - &112\n      - ''37''\n      - *33\n    ''294'':\n    - *112\n    ''298'':\n    - &113\n      - ''38''\n      - *34\n    ''299'':\n    - *113\n    ''307'':\n    - &114\n      - ''3''\n      - *25\n    ''308'':\n    - *114\n    ''32'':\n    - &115\n      - ''1''\n      - *3\n    ''325'':\n    - &116\n      - ''4''\n      - *36\n    ''326'':\n    - *116\n    ''33'':\n    - *115\n    ''338'':\n    - &117\n      - ''5''\n      - *40\n    ''339'':\n    - *117\n    ''367'':\n    - &118\n      - ''39''\n      - *35\n    ''368'':\n    - *118\n    ''373'':\n    - &119\n      - ''40''\n      - *37\n    ''374'':\n    - *119\n    ''402'':\n    - &120\n      - ''18''\n      - *12\n    ''403'':\n    - *120\n    ''407'':\n    - &121\n      - ''19''\n      - *13\n    ''408'':\n    - *121\n    ''409'':\n    - &122\n      - ''41''\n      - *38\n    ''410'':\n    - *122\n    ''495'':\n    - &123\n      - ''6''\n      - *41\n    ''496'':\n    - *123\n    ''507'':\n    - &124\n      - ''20''\n      - *15\n    ''508'':\n    - *124\n    ''524'':\n    - &125\n      - ''21''\n      - *16\n    ''525'':\n    - *125\n    ''61'':\n    - &126\n      - ''9''\n      - *44\n    ''62'':\n    - *126\n    ''667'':\n    - &127\n      - ''22''\n      - *17\n    ''668'':\n    - *127\n    ''69'':\n    - &128\n      - ''10''\n      - *4\n    ''70'':\n    - *128\n    ''722'':\n    - &129\n      - ''23''\n      - *18\n    ''723'':\n    - *129\n    ''773'':\n    - &130\n      - ''42''\n      - *39\n    ''774'':\n    - *130\n    ''782'':\n    - &131\n      - ''7''\n      - *42\n    ''783'':\n    - *131\n    ''8'':\n    - &132\n      - ''0''\n      - *2\n    ''808'':\n    - &133\n      - ''24''\n      - *19\n    ''809'':\n    - *133\n    ''812'':\n    - &134\n      - ''25''\n      - *20\n    ''813'':\n    - *134\n    ''84'':\n    - &135\n      - ''12''\n      - *6\n    ''85'':\n    - &136\n      - ''13''\n      - *7\n    - *135\n    ''86'':\n    - *136\n    ''862'':\n    - &137\n      - ''32''\n      - *28\n    ''863'':\n    - *137\n    ''9'':\n    - *132\n    ''991'':\n    - &138\n      - ''26''\n      - *21\n    ''992'':\n    - *138\n","id":"B4E19A48-9504-11E1-93EE-8FC4A89F4671"}','Graph',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6285AD6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"407,1","rank":"407","reading_lexemes":[],"text":"même"},"id":"B6285AD6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62920A6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"925,1","rank":"925","reading_lexemes":[],"text":"seul"},"id":"B62920A6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D8D7D6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"953,2","rank":"953","reading_lexemes":[],"text":"une"},"id":"B5D8D7D6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DAF9AE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"reflexive (also spelling)","reading_a":"simaginer","reading_b":"imaginer","scope":"global","type":"grammatical"},"id":"B4DAF9AE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56AE60E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"702,2","rank":"702","reading_lexemes":[],"text":"de"},"id":"B56AE60E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6C5320C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Witness","data":{"language":"Default","sigil":"L","sourcetype":"collation","text":["Notre besoin de consolation est impossible à","rassasier","Stig Dagerman","Je","suis","dépourvu","de","foi","et","ne","puis","donc","être","heureux","car","un","homme","qui","risque","de","craindre","que","sa","vie","ne","soit","errance","absurde","vers","une","mort","certaine","ne","peut","être","heureux","Je n''ai","reçu","en","héritage","ni","dieu","ni","point","fixe","sur","la","terre","d''où","je","puisse","attirer","l''attention","d''un","dieu","On","ne","m''a","pas","non","plus","légué","la","fureur","bien","déguisée","du","sceptique","les","ruses","de","Sioux","du","rationnaliste","ou","la","candeur","ardente","de","l''athée","Je","n''ose","donc","jeter","la","pierre","ni","à","celle","qui","croit","des","choses","qui","ne","minspire","que","le","doute","ni","à","celui","qui","cultive","son","doute","comme","si","celui-ci","n''était","pas","lui","aussi","entouré","de","ténèbres","Cette","pierre","m''atteindrait","moi-même","car","je","suis","bien","certain","d''une","chose","le","besoin","de","consolation","que","connaît","l''être","humain","est","impossible","à","rassasier","En","ce","qui","me","concerne","je","traque","la","consolation","comme","le","chasseur","traqu","le","gibier","Partout","où","je","crois","l''apercevoir","dans","la","forêt","je","tire","Souvent","je","n''atteins","que","le","vide","mais","une","fois","de","temps","en","temps","une","proie","tombe","à","mes","pieds","Et","comme","je","sais","que","la","consolation","ne","dure","que","le","temps","d''un","souffle","de","vent","dans","la","cîme","d''un","arbre","je","me","dépêche","de","m''emparer","de","ma","victime","Qu''ai-je","alors","entre","les","bras","Puisque","je","suis","solitaire","une","femme","aimée","ou","un","compagnon","de","voyage","malheureux","Puisque","je","suis","poète","un","arc","de","mots","que","je","ressens","dans","la","joie","et","de","l''effroi","à","bander","Puisque","je","suis","prisonnier","un","aperçu","soudain","de","la","liberté","Puisque","je","suis","menacé","par","la","mort","un","animal","vivant","et","bien","chaud","un","cœur","qui","bat","de","façon","sarcastique","Puisque","je","suis","menacé","par","la","mer","un","récif","de","granit","bien","dur","Mais","il","y","a","aussi","des","consolations","qui","viennent","à","moi","sans","y","être","conviées","et","qui","remplissent","ma","chambre","de","chuchotements","odieux","Je","suis","ton","plaisir","aime-les","toutes","Je","suis","ton","talent","fais-en","aussi","mauvais","usage","que","de","Toi-même","Je","suis","ton","désir","de","jouissance","seuls","vivent","les","gourmets","Je","suis","ta","solitude","méprise","les","hommes","Je","suis","ton","aspiration","à","la","mort","alors","tranche","Le","fil","du","rasoir","est","bien","étroit","Je","vois","ma","vie","menacée","par","deux","périls","d''un","côté","par","les","bouches","avides","de","la","gourmandise","de","l''autre","par","l''amertume","de","l''avarice","qui","se","nourrit","d''elle-même","Mais","je","tiens","à","refuser","de","choisir","entre","l''orgie","et","l''ascèse","même","si","je","dois","pour","cela","subir","le","supplice","du","grill","de","mes","désirs","Pour","moi","il","ne","suffit","pas","de","savoir","que","puisque","nous","ne","sommes","pas","libres","de","nos","actes","tout","est","excusable","Ce","que","je","cherche","ce","n''est","pas","une","excuse","à","ma","vie","mais","exactement","le","contraire","d''une","excuse","le","pardon","L''idée","me","vient","finalement","que","toute","consolation","ne","prenant","pas","en","compte","ma","liberté","est","trompeuse","qu''elle","n''est","que","l''image","réfléchie","de","mon","désespoir","En","effet","lorsque","mon","désespoir","me","dit","Perds","confiance","car","chaque","jour","n''est","qu''une","trêve","entre","deux","nuits","la","fausse","consolation","me","crie","Espère","car","chaque","nuit","n''est","qu''une","trêve","entre","deux","jours","Mais","l''humanité","n''a","que","faire","d''une","consolation","en","forme","de","mot","d''esprit","elle","a","besoin","d''une","consolation","qui","illumine","Et","celui","qui","souhaite","devenir","mauvais","c''est-à-dire","devenir","un","homme","qui","agisse","comme","si","toutes","les","actions","étaient","défendables","doit","du","moins","avoir","la","bonté","de","le","remarquer","lorsqu''il","y","parvient","Personne","ne","peut","énumérer","tous","les","cas","où","la","consolation","est","une","nécessité","Personne","ne","sait","quand","tombera","le","crépuscule","et","la","vie","n''est","pas","un","problème","qui","peut","être","résolu","en","divisant","la","lumière","par","l''obscurité","et","les","jours","par","les","nuits","c''est","un","voyage","imprévisible","entre","des","lieux","qui","n''existent","pas","Je","peux","par","exemple","marcher","sur","le","rivage","et","ressentir","tour","à","tour","le","défi","effroyable","que","l''éternité","lance","à","mon","existence","dans","le","mouvement","perpétuel","de","la","mer","et","dans","la","fuite","perpétuelle","du","vent","Que","devient","alors","le","temps","si","ce","n''est","une","consolation","pour","le","fait","que","rien","de","ce","qui","est","humain","ne","dure","et","quelle","misérable","consolation","qui","n''enrichit","que","les","Suisses","Je","peux","rester","assis","devant","un","feu","dans","la","pièce","la","moins","exposée","de","toutes","au","danger","et","sentir","soudain","la","mort","me","cerner","Elle","se","trouve","dans","le","feu","dans","tous","les","objets","pointus","qui","m''entourent","dans","le","poids","du","toit","et","dans","la","masse","des","murs","elle","se","trouve","dans","l''eau","dans","la","neige","dans","la","chaleur","et","dans","mon","sang","Que","devient","alors","le","sentiment","humain","de","sécurité","si","ce","n''est","une","consolation","pour","le","fait","que","la","mort","est","ce","qu''il","y","a","de","plus","proche","dans","la","vie","et","quelle","misérable","consolation","qui","ne","fait","que","nous","rappeler","ce","qu''elle","veut","nous","faire","oublier","Je","peux","remplir","toutes","les","pages","blanches","avec","les","plus","belles","combinaisons","de","mots","que","puisse","imaginer","mon","cerveau","Etant","donné","que","je","cherche","à","m''assurer","que","ma","vie","n''est","pas","absurde","et","que","je","ne","suis","pas","seul","sur","la","terre","je","rassemble","tous","ces","mots","en","un","livre","et","je","l''offre","au","monde","En","retour","celui-ci","me","donne","la","richesse","la","gloire","et","le","silence","Mais","que","puis-je","bien","faire","de","cet","argent","et","quel","plaisir","puis-je","prendre","à","contribuer","au","progrès","de","la","littérature","je","ne","désire","que","ce","que","je","n''aurai","pas","la","confirmation","que","mes","mots","ont","touché","le","cœur","du","monde","Que","devient","alors","mon","talent","si","ce","n''est","une","consolation","pour","le","fait","que","je","suis","seul","mais","quel","épouvantable","consolation","qui","me","fait","simplement","ressentir","ma","solitude","cinq","fois","plus","fort","Je","peux","voir","la","liberté","incarnée","dans","un","animal","qui","traverse","une","clairière","et","entendre","une","voix","qui","chuchote","Vis","simplement","prends","ce","que","tu","désires","et","n''aie","pas","peur","des","lois","Mais","qu''est-ce","que","ce","bon","conseil","si","ce","n''est","une","consolation","pour","le","fait","que","la","liberté","n''existe","pas","et","quelle","impitoyable","consolation","pour","celui","qui","s''avise","que","le","lézard","doit","mettre","des","millions","d''années","pour","devenir","un","être humain"],"tradition":{"$ref":"load-test.data"}},"id":"B6C5320C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Witness',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64C63CC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"100,1","rank":"100","reading_lexemes":[],"text":"que"},"id":"B64C63CC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B68329CA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"208,1","rank":"208","reading_lexemes":[],"text":"je"},"id":"B68329CA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63D7A4C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"484,1","rank":"484","reading_lexemes":[],"text":"mon"},"id":"B63D7A4C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D4B454-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"grill","reading_b":"gril","scope":"global","type":"spelling"},"id":"B4D4B454-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67D16E8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"67,1","rank":"67","reading_lexemes":[],"text":"bien"},"id":"B67D16E8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C22AA4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"170,2","rank":"170","reading_lexemes":[],"text":"natteint"},"id":"B5C22AA4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B651CAC4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"675,2","rank":"675","reading_lexemes":[],"text":"qui"},"id":"B651CAC4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B565A81A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"657,2","rank":"657","reading_lexemes":[],"text":"vent"},"id":"B565A81A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66F883E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"514,1","rank":"514","reading_lexemes":[],"text":"qu''une"},"id":"B66F883E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6606B88-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"801,1","rank":"801","reading_lexemes":[],"text":"remplir"},"id":"B6606B88-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5AE9EBC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"317,2","rank":"317","reading_lexemes":[],"text":"chuchotements"},"id":"B5AE9EBC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5150770-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"493,2","rank":"493","reading_lexemes":[],"text":"perds"},"id":"B5150770-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4FBDDEA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"210,1","rank":"210","reading_lexemes":[],"text":"dépêche"},"id":"B4FBDDEA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56E078A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"335,2","rank":"335","reading_lexemes":[],"text":"toi-même"},"id":"B56E078A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DEC3C2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"sg/pl","reading_a":"conviée","reading_b":"conviées","scope":"global","type":"grammatical"},"id":"B4DEC3C2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50B773C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"869,2","rank":"869","reading_lexemes":[],"text":"bien"},"id":"B50B773C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6756A92-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"151,1","rank":"151","reading_lexemes":[],"text":"consolation"},"id":"B6756A92-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5012DE0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"237,1","rank":"237","reading_lexemes":[],"text":"poète"},"id":"B5012DE0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BA4E06-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"738,2","rank":"738","reading_lexemes":[],"text":"se"},"id":"B5BA4E06-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B589F774-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"705,2","rank":"705","reading_lexemes":[],"text":"danger"},"id":"B589F774-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59746FE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"472,1","rank":"472","reading_lexemes":[],"text":"en"},"id":"B59746FE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65FA8A6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"796,2","rank":"796","reading_lexemes":[],"text":"nous"},"id":"B65FA8A6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B532037A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"155,3","rank":"155","reading_lexemes":[],"text":"tracque"},"id":"B532037A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4FD6426-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"616,2","rank":"616","reading_lexemes":[],"text":"entre"},"id":"B4FD6426-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60A564E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"457,1","rank":"457","reading_lexemes":[],"text":"contraire"},"id":"B60A564E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B561D564-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"188,1","rank":"188","reading_lexemes":[],"text":"comme"},"id":"B561D564-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B660CB28-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"353,1","rank":"353","reading_lexemes":[],"text":"Je"},"id":"B660CB28-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61C02F4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"1,1","rank":"1","reading_lexemes":[],"text":"Notre besoin de consolation est impossible à"},"id":"B61C02F4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F42856-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"136,1","rank":"136","reading_lexemes":[],"text":"connaît"},"id":"B5F42856-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54D044A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"92,1","rank":"92","reading_lexemes":[],"text":"qui"},"id":"B54D044A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B586F8C6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"236,1","rank":"236","reading_lexemes":[],"text":"suis"},"id":"B586F8C6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FB09D2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"117,1","rank":"117","reading_lexemes":[],"text":"entouré"},"id":"B5FB09D2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50FBA90-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"858,2","rank":"858","reading_lexemes":[],"text":"donne"},"id":"B50FBA90-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56C86F8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"294,1","rank":"294","reading_lexemes":[],"text":"bien"},"id":"B56C86F8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59DF8BE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"451,1","rank":"451","reading_lexemes":[],"text":"à"},"id":"B59DF8BE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67BF45C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"589,1","rank":"589","reading_lexemes":[],"text":"et"},"id":"B67BF45C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6367D78-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"896,2","rank":"896","reading_lexemes":[],"text":"confirmation"},"id":"B6367D78-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B582D516-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"846,1","rank":"846","reading_lexemes":[],"text":"en"},"id":"B582D516-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F937F2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"434,1","rank":"434","reading_lexemes":[],"text":"pas"},"id":"B4F937F2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B545F204-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"249,1","rank":"249","reading_lexemes":[],"text":"de"},"id":"B545F204-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62ED6AE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"346,1","rank":"346","reading_lexemes":[],"text":"Je"},"id":"B62ED6AE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5EA1672-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"803,3","rank":"803","reading_lexemes":[],"text":"mes"},"id":"B5EA1672-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B638CE70-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"510,1","rank":"510","reading_lexemes":[],"text":"car"},"id":"B638CE70-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B590E05C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"958,2","rank":"958","reading_lexemes":[],"text":"voix"},"id":"B590E05C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B557506C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"972,1","rank":"972","reading_lexemes":[],"text":"pour"},"id":"B557506C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B64576F2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"515,2","rank":"515","reading_lexemes":[],"text":"trève"},"id":"B64576F2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51FAE50-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"513,1","rank":"513","reading_lexemes":[],"text":"n''est"},"id":"B51FAE50-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6555018-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"112,1","rank":"112","reading_lexemes":[],"text":"celui-ci"},"id":"B6555018-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65737C0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"585,1","rank":"585","reading_lexemes":[],"text":"quand"},"id":"B65737C0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B671DF08-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"849,1","rank":"849","reading_lexemes":[],"text":"et"},"id":"B671DF08-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5507C2E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"271,1","rank":"271","reading_lexemes":[],"text":"animal"},"id":"B5507C2E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59E5854-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"798,1","rank":"798","reading_lexemes":[],"text":"oublier"},"id":"B59E5854-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B597A7B6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"63,1","rank":"63","reading_lexemes":[],"text":"plus"},"id":"B597A7B6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B549BA6A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"425,1","rank":"425","reading_lexemes":[],"text":"suffit"},"id":"B549BA6A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B40EF368-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation","data":{"_graphcalc_done":"0","ac_label":" (a.c.)","baselabel":"base text","end":{"$ref":"B4EB31C0-9504-11E1-93EE-8FC4A89F4671.data"},"linear":"1","readings":{"#END#":{"$ref":"B4EB31C0-9504-11E1-93EE-8FC4A89F4671.data"},"#START#":{"$ref":"B66A1944-9504-11E1-93EE-8FC4A89F4671.data"},"1,1":{"$ref":"B61C02F4-9504-11E1-93EE-8FC4A89F4671.data"},"10,1":{"$ref":"B5374EAC-9504-11E1-93EE-8FC4A89F4671.data"},"100,1":{"$ref":"B64C63CC-9504-11E1-93EE-8FC4A89F4671.data"},"1000,2":{"$ref":"B5E6AE24-9504-11E1-93EE-8FC4A89F4671.data"},"1001,2":{"$ref":"B5D8106C-9504-11E1-93EE-8FC4A89F4671.data"},"1002,2":{"$ref":"B5CCE868-9504-11E1-93EE-8FC4A89F4671.data"},"1003,2":{"$ref":"B57589B0-9504-11E1-93EE-8FC4A89F4671.data"},"1003,3":{"$ref":"B66D26AC-9504-11E1-93EE-8FC4A89F4671.data"},"1004,2":{"$ref":"B684657E-9504-11E1-93EE-8FC4A89F4671.data"},"1004,3":{"$ref":"B57906B2-9504-11E1-93EE-8FC4A89F4671.data"},"1005,2":{"$ref":"B621C040-9504-11E1-93EE-8FC4A89F4671.data"},"1006,2":{"$ref":"B6451586-9504-11E1-93EE-8FC4A89F4671.data"},"1007,2":{"$ref":"B62F9B7A-9504-11E1-93EE-8FC4A89F4671.data"},"1008,2":{"$ref":"B52A7074-9504-11E1-93EE-8FC4A89F4671.data"},"1009,2":{"$ref":"B591A014-9504-11E1-93EE-8FC4A89F4671.data"},"101,1":{"$ref":"B629E3B0-9504-11E1-93EE-8FC4A89F4671.data"},"1010,1":{"$ref":"B530212C-9504-11E1-93EE-8FC4A89F4671.data"},"1011,2":{"$ref":"B607FE80-9504-11E1-93EE-8FC4A89F4671.data"},"1012,2":{"$ref":"B5CD4858-9504-11E1-93EE-8FC4A89F4671.data"},"1013,3":{"$ref":"B575EB76-9504-11E1-93EE-8FC4A89F4671.data"},"1013,4":{"$ref":"B6024954-9504-11E1-93EE-8FC4A89F4671.data"},"102,2":{"$ref":"B61E4E74-9504-11E1-93EE-8FC4A89F4671.data"},"103,1":{"$ref":"B50E3378-9504-11E1-93EE-8FC4A89F4671.data"},"104,1":{"$ref":"B52E3D8A-9504-11E1-93EE-8FC4A89F4671.data"},"105,1":{"$ref":"B5B449D4-9504-11E1-93EE-8FC4A89F4671.data"},"106,1":{"$ref":"B54DC6BE-9504-11E1-93EE-8FC4A89F4671.data"},"107,1":{"$ref":"B5B86EEC-9504-11E1-93EE-8FC4A89F4671.data"},"108,1":{"$ref":"B59C6ECC-9504-11E1-93EE-8FC4A89F4671.data"},"109,1":{"$ref":"B5A95AC4-9504-11E1-93EE-8FC4A89F4671.data"},"11,1":{"$ref":"B65D50EC-9504-11E1-93EE-8FC4A89F4671.data"},"110,1":{"$ref":"B5C83E8A-9504-11E1-93EE-8FC4A89F4671.data"},"110,2":{"$ref":"B62A4454-9504-11E1-93EE-8FC4A89F4671.data"},"111,1":{"$ref":"B5809170-9504-11E1-93EE-8FC4A89F4671.data"},"112,1":{"$ref":"B6555018-9504-11E1-93EE-8FC4A89F4671.data"},"113,1":{"$ref":"B570496E-9504-11E1-93EE-8FC4A89F4671.data"},"114,1":{"$ref":"B5126204-9504-11E1-93EE-8FC4A89F4671.data"},"115,1":{"$ref":"B55FF65E-9504-11E1-93EE-8FC4A89F4671.data"},"116,2":{"$ref":"B4EF54D0-9504-11E1-93EE-8FC4A89F4671.data"},"117,1":{"$ref":"B5FB09D2-9504-11E1-93EE-8FC4A89F4671.data"},"118,1":{"$ref":"B518DC1A-9504-11E1-93EE-8FC4A89F4671.data"},"119,1":{"$ref":"B5D1E58E-9504-11E1-93EE-8FC4A89F4671.data"},"12,1":{"$ref":"B5FED968-9504-11E1-93EE-8FC4A89F4671.data"},"120,1":{"$ref":"B5513EC0-9504-11E1-93EE-8FC4A89F4671.data"},"121,1":{"$ref":"B524F734-9504-11E1-93EE-8FC4A89F4671.data"},"122,1":{"$ref":"B4ECB1C6-9504-11E1-93EE-8FC4A89F4671.data"},"123,1":{"$ref":"B5C9603A-9504-11E1-93EE-8FC4A89F4671.data"},"124,1":{"$ref":"B57D2F80-9504-11E1-93EE-8FC4A89F4671.data"},"125,1":{"$ref":"B51816A4-9504-11E1-93EE-8FC4A89F4671.data"},"126,1":{"$ref":"B5D0500C-9504-11E1-93EE-8FC4A89F4671.data"},"127,1":{"$ref":"B592BECC-9504-11E1-93EE-8FC4A89F4671.data"},"128,1":{"$ref":"B55E77E8-9504-11E1-93EE-8FC4A89F4671.data"},"129,1":{"$ref":"B56FE820-9504-11E1-93EE-8FC4A89F4671.data"},"13,1":{"$ref":"B6145400-9504-11E1-93EE-8FC4A89F4671.data"},"130,1":{"$ref":"B50801C4-9504-11E1-93EE-8FC4A89F4671.data"},"131,1":{"$ref":"B618F352-9504-11E1-93EE-8FC4A89F4671.data"},"132,1":{"$ref":"B622ED6C-9504-11E1-93EE-8FC4A89F4671.data"},"133,1":{"$ref":"B5FC8EC4-9504-11E1-93EE-8FC4A89F4671.data"},"134,1":{"$ref":"B53D45E6-9504-11E1-93EE-8FC4A89F4671.data"},"135,1":{"$ref":"B628BD3C-9504-11E1-93EE-8FC4A89F4671.data"},"136,1":{"$ref":"B5F42856-9504-11E1-93EE-8FC4A89F4671.data"},"136,2":{"$ref":"B51BE43C-9504-11E1-93EE-8FC4A89F4671.data"},"137,1":{"$ref":"B4F5CD74-9504-11E1-93EE-8FC4A89F4671.data"},"138,1":{"$ref":"B59FD9E0-9504-11E1-93EE-8FC4A89F4671.data"},"139,1":{"$ref":"B53812CE-9504-11E1-93EE-8FC4A89F4671.data"},"14,1":{"$ref":"B55AB1E4-9504-11E1-93EE-8FC4A89F4671.data"},"140,1":{"$ref":"B57BB150-9504-11E1-93EE-8FC4A89F4671.data"},"141,1":{"$ref":"B508634E-9504-11E1-93EE-8FC4A89F4671.data"},"142,1":{"$ref":"B4FC40D2-9504-11E1-93EE-8FC4A89F4671.data"},"142,2":{"$ref":"B640E8EE-9504-11E1-93EE-8FC4A89F4671.data"},"143,1":{"$ref":"B4FD021A-9504-11E1-93EE-8FC4A89F4671.data"},"144,1":{"$ref":"B53E66D8-9504-11E1-93EE-8FC4A89F4671.data"},"145,1":{"$ref":"B53327D2-9504-11E1-93EE-8FC4A89F4671.data"},"146,1":{"$ref":"B6864E0C-9504-11E1-93EE-8FC4A89F4671.data"},"147,1":{"$ref":"B5B02214-9504-11E1-93EE-8FC4A89F4671.data"},"148,1":{"$ref":"B639F37C-9504-11E1-93EE-8FC4A89F4671.data"},"149,1":{"$ref":"B5F4944E-9504-11E1-93EE-8FC4A89F4671.data"},"15,1":{"$ref":"B6488D24-9504-11E1-93EE-8FC4A89F4671.data"},"150,1":{"$ref":"B5B68ECE-9504-11E1-93EE-8FC4A89F4671.data"},"151,1":{"$ref":"B6756A92-9504-11E1-93EE-8FC4A89F4671.data"},"152,1":{"$ref":"B512C4A6-9504-11E1-93EE-8FC4A89F4671.data"},"153,1":{"$ref":"B55F9740-9504-11E1-93EE-8FC4A89F4671.data"},"154,1":{"$ref":"B50740FE-9504-11E1-93EE-8FC4A89F4671.data"},"155,1":{"$ref":"B59866EC-9504-11E1-93EE-8FC4A89F4671.data"},"155,2":{"$ref":"B5EDEF36-9504-11E1-93EE-8FC4A89F4671.data"},"155,3":{"$ref":"B532037A-9504-11E1-93EE-8FC4A89F4671.data"},"156,1":{"$ref":"B58F607E-9504-11E1-93EE-8FC4A89F4671.data"},"157,1":{"$ref":"B54B5A14-9504-11E1-93EE-8FC4A89F4671.data"},"158,1":{"$ref":"B65EE51A-9504-11E1-93EE-8FC4A89F4671.data"},"159,1":{"$ref":"B50EF790-9504-11E1-93EE-8FC4A89F4671.data"},"16,1":{"$ref":"B58CBEBE-9504-11E1-93EE-8FC4A89F4671.data"},"160,1":{"$ref":"B6079D5A-9504-11E1-93EE-8FC4A89F4671.data"},"161,1":{"$ref":"B5A27BC8-9504-11E1-93EE-8FC4A89F4671.data"},"162,1":{"$ref":"B4EE91DA-9504-11E1-93EE-8FC4A89F4671.data"},"163,1":{"$ref":"B576ABD8-9504-11E1-93EE-8FC4A89F4671.data"},"164,1":{"$ref":"B65AA77A-9504-11E1-93EE-8FC4A89F4671.data"},"165,1":{"$ref":"B5D6E1A6-9504-11E1-93EE-8FC4A89F4671.data"},"166,1":{"$ref":"B50F5780-9504-11E1-93EE-8FC4A89F4671.data"},"167,1":{"$ref":"B63932F2-9504-11E1-93EE-8FC4A89F4671.data"},"168,1":{"$ref":"B5FE16CC-9504-11E1-93EE-8FC4A89F4671.data"},"169,1":{"$ref":"B670AD40-9504-11E1-93EE-8FC4A89F4671.data"},"17,1":{"$ref":"B5ECCB92-9504-11E1-93EE-8FC4A89F4671.data"},"170,1":{"$ref":"B513E4B2-9504-11E1-93EE-8FC4A89F4671.data"},"170,2":{"$ref":"B5C22AA4-9504-11E1-93EE-8FC4A89F4671.data"},"171,1":{"$ref":"B614B2E2-9504-11E1-93EE-8FC4A89F4671.data"},"172,1":{"$ref":"B5326414-9504-11E1-93EE-8FC4A89F4671.data"},"173,1":{"$ref":"B62736D8-9504-11E1-93EE-8FC4A89F4671.data"},"174,2":{"$ref":"B5200E86-9504-11E1-93EE-8FC4A89F4671.data"},"175,1":{"$ref":"B5DBFD94-9504-11E1-93EE-8FC4A89F4671.data"},"176,1":{"$ref":"B5C2EB10-9504-11E1-93EE-8FC4A89F4671.data"},"177,1":{"$ref":"B5DB9DEA-9504-11E1-93EE-8FC4A89F4671.data"},"178,1":{"$ref":"B5F9E6A6-9504-11E1-93EE-8FC4A89F4671.data"},"179,1":{"$ref":"B53081DA-9504-11E1-93EE-8FC4A89F4671.data"},"18,1":{"$ref":"B5CE0C16-9504-11E1-93EE-8FC4A89F4671.data"},"180,1":{"$ref":"B678E6CC-9504-11E1-93EE-8FC4A89F4671.data"},"181,1":{"$ref":"B5B145CC-9504-11E1-93EE-8FC4A89F4671.data"},"182,1":{"$ref":"B682C9DA-9504-11E1-93EE-8FC4A89F4671.data"},"182,2":{"$ref":"B60933B8-9504-11E1-93EE-8FC4A89F4671.data"},"183,1":{"$ref":"B5255882-9504-11E1-93EE-8FC4A89F4671.data"},"184,1":{"$ref":"B58B3D96-9504-11E1-93EE-8FC4A89F4671.data"},"185,1":{"$ref":"B5D30D6A-9504-11E1-93EE-8FC4A89F4671.data"},"186,1":{"$ref":"B529AC2A-9504-11E1-93EE-8FC4A89F4671.data"},"187,1":{"$ref":"B5887854-9504-11E1-93EE-8FC4A89F4671.data"},"188,1":{"$ref":"B561D564-9504-11E1-93EE-8FC4A89F4671.data"},"189,1":{"$ref":"B61D8BCE-9504-11E1-93EE-8FC4A89F4671.data"},"19,1":{"$ref":"B515C778-9504-11E1-93EE-8FC4A89F4671.data"},"190,1":{"$ref":"B647C998-9504-11E1-93EE-8FC4A89F4671.data"},"191,1":{"$ref":"B5A8E684-9504-11E1-93EE-8FC4A89F4671.data"},"192,1":{"$ref":"B6101E9E-9504-11E1-93EE-8FC4A89F4671.data"},"193,1":{"$ref":"B5EC697C-9504-11E1-93EE-8FC4A89F4671.data"},"194,1":{"$ref":"B560575C-9504-11E1-93EE-8FC4A89F4671.data"},"195,1":{"$ref":"B55B1440-9504-11E1-93EE-8FC4A89F4671.data"},"196,1":{"$ref":"B5B8CFEA-9504-11E1-93EE-8FC4A89F4671.data"},"197,1":{"$ref":"B5BD4A8E-9504-11E1-93EE-8FC4A89F4671.data"},"198,1":{"$ref":"B516E996-9504-11E1-93EE-8FC4A89F4671.data"},"199,1":{"$ref":"B50E96CE-9504-11E1-93EE-8FC4A89F4671.data"},"2,1":{"$ref":"B60D0E52-9504-11E1-93EE-8FC4A89F4671.data"},"2,2":{"$ref":"B657F9EE-9504-11E1-93EE-8FC4A89F4671.data"},"20,1":{"$ref":"B6235B6C-9504-11E1-93EE-8FC4A89F4671.data"},"200,1":{"$ref":"B5B569EA-9504-11E1-93EE-8FC4A89F4671.data"},"201,1":{"$ref":"B635574A-9504-11E1-93EE-8FC4A89F4671.data"},"202,1":{"$ref":"B5F617BA-9504-11E1-93EE-8FC4A89F4671.data"},"203,1":{"$ref":"B5ABFFF4-9504-11E1-93EE-8FC4A89F4671.data"},"204,1":{"$ref":"B5599052-9504-11E1-93EE-8FC4A89F4671.data"},"205,2":{"$ref":"B5AE3DB4-9504-11E1-93EE-8FC4A89F4671.data"},"205,3":{"$ref":"B540A588-9504-11E1-93EE-8FC4A89F4671.data"},"205,4":{"$ref":"B5E2E3CA-9504-11E1-93EE-8FC4A89F4671.data"},"205,5":{"$ref":"B5067EF8-9504-11E1-93EE-8FC4A89F4671.data"},"205,6":{"$ref":"B5B50824-9504-11E1-93EE-8FC4A89F4671.data"},"206,1":{"$ref":"B5A1BBC0-9504-11E1-93EE-8FC4A89F4671.data"},"207,1":{"$ref":"B67D7A20-9504-11E1-93EE-8FC4A89F4671.data"},"208,1":{"$ref":"B68329CA-9504-11E1-93EE-8FC4A89F4671.data"},"209,1":{"$ref":"B571C88E-9504-11E1-93EE-8FC4A89F4671.data"},"21,1":{"$ref":"B564878C-9504-11E1-93EE-8FC4A89F4671.data"},"210,1":{"$ref":"B4FBDDEA-9504-11E1-93EE-8FC4A89F4671.data"},"211,1":{"$ref":"B680E48A-9504-11E1-93EE-8FC4A89F4671.data"},"212,1":{"$ref":"B53E05C6-9504-11E1-93EE-8FC4A89F4671.data"},"213,1":{"$ref":"B669B83C-9504-11E1-93EE-8FC4A89F4671.data"},"214,1":{"$ref":"B54104CE-9504-11E1-93EE-8FC4A89F4671.data"},"215,1":{"$ref":"B5C10B60-9504-11E1-93EE-8FC4A89F4671.data"},"216,1":{"$ref":"B5362E50-9504-11E1-93EE-8FC4A89F4671.data"},"217,1":{"$ref":"B55ED724-9504-11E1-93EE-8FC4A89F4671.data"},"218,1":{"$ref":"B5273BAC-9504-11E1-93EE-8FC4A89F4671.data"},"219,1":{"$ref":"B5356BA0-9504-11E1-93EE-8FC4A89F4671.data"},"219,2":{"$ref":"B57EAD9C-9504-11E1-93EE-8FC4A89F4671.data"},"22,1":{"$ref":"B63E9CE2-9504-11E1-93EE-8FC4A89F4671.data"},"220,1":{"$ref":"B6361AF4-9504-11E1-93EE-8FC4A89F4671.data"},"221,1":{"$ref":"B632AB58-9504-11E1-93EE-8FC4A89F4671.data"},"222,1":{"$ref":"B64D2686-9504-11E1-93EE-8FC4A89F4671.data"},"223,1":{"$ref":"B646A1BC-9504-11E1-93EE-8FC4A89F4671.data"},"224,1":{"$ref":"B528E56A-9504-11E1-93EE-8FC4A89F4671.data"},"225,1":{"$ref":"B57DEFB0-9504-11E1-93EE-8FC4A89F4671.data"},"226,1":{"$ref":"B52B3554-9504-11E1-93EE-8FC4A89F4671.data"},"227,1":{"$ref":"B5C77BEE-9504-11E1-93EE-8FC4A89F4671.data"},"228,1":{"$ref":"B5D7A258-9504-11E1-93EE-8FC4A89F4671.data"},"229,1":{"$ref":"B5B4A97E-9504-11E1-93EE-8FC4A89F4671.data"},"23,1":{"$ref":"B5BDAA4C-9504-11E1-93EE-8FC4A89F4671.data"},"230,1":{"$ref":"B639938C-9504-11E1-93EE-8FC4A89F4671.data"},"231,1":{"$ref":"B5E08FDA-9504-11E1-93EE-8FC4A89F4671.data"},"232,1":{"$ref":"B5199EB6-9504-11E1-93EE-8FC4A89F4671.data"},"233,1":{"$ref":"B6176EF6-9504-11E1-93EE-8FC4A89F4671.data"},"234,1":{"$ref":"B53ACEBA-9504-11E1-93EE-8FC4A89F4671.data"},"235,1":{"$ref":"B52313CE-9504-11E1-93EE-8FC4A89F4671.data"},"236,1":{"$ref":"B586F8C6-9504-11E1-93EE-8FC4A89F4671.data"},"237,1":{"$ref":"B5012DE0-9504-11E1-93EE-8FC4A89F4671.data"},"238,1":{"$ref":"B5C3AA28-9504-11E1-93EE-8FC4A89F4671.data"},"239,1":{"$ref":"B66B40BC-9504-11E1-93EE-8FC4A89F4671.data"},"239,2":{"$ref":"B606DC3A-9504-11E1-93EE-8FC4A89F4671.data"},"24,1":{"$ref":"B5428574-9504-11E1-93EE-8FC4A89F4671.data"},"240,1":{"$ref":"B61A1A3E-9504-11E1-93EE-8FC4A89F4671.data"},"241,1":{"$ref":"B51626C8-9504-11E1-93EE-8FC4A89F4671.data"},"242,1":{"$ref":"B6814448-9504-11E1-93EE-8FC4A89F4671.data"},"243,1":{"$ref":"B5D743A8-9504-11E1-93EE-8FC4A89F4671.data"},"244,1":{"$ref":"B53F84BE-9504-11E1-93EE-8FC4A89F4671.data"},"244,2":{"$ref":"B55BD182-9504-11E1-93EE-8FC4A89F4671.data"},"245,1":{"$ref":"B5A459D4-9504-11E1-93EE-8FC4A89F4671.data"},"245,2":{"$ref":"B5EE4FF8-9504-11E1-93EE-8FC4A89F4671.data"},"246,1":{"$ref":"B6318638-9504-11E1-93EE-8FC4A89F4671.data"},"247,1":{"$ref":"B539350A-9504-11E1-93EE-8FC4A89F4671.data"},"248,1":{"$ref":"B552CFD8-9504-11E1-93EE-8FC4A89F4671.data"},"249,1":{"$ref":"B545F204-9504-11E1-93EE-8FC4A89F4671.data"},"25,1":{"$ref":"B5459322-9504-11E1-93EE-8FC4A89F4671.data"},"250,1":{"$ref":"B5BE0A1E-9504-11E1-93EE-8FC4A89F4671.data"},"251,1":{"$ref":"B56C23AC-9504-11E1-93EE-8FC4A89F4671.data"},"251,2":{"$ref":"B523D6D8-9504-11E1-93EE-8FC4A89F4671.data"},"252,1":{"$ref":"B50D5CD2-9504-11E1-93EE-8FC4A89F4671.data"},"253,1":{"$ref":"B5DD241C-9504-11E1-93EE-8FC4A89F4671.data"},"254,1":{"$ref":"B5DCC3B4-9504-11E1-93EE-8FC4A89F4671.data"},"255,1":{"$ref":"B64A7AC6-9504-11E1-93EE-8FC4A89F4671.data"},"256,1":{"$ref":"B543450E-9504-11E1-93EE-8FC4A89F4671.data"},"257,1":{"$ref":"B611A502-9504-11E1-93EE-8FC4A89F4671.data"},"258,1":{"$ref":"B5F0979A-9504-11E1-93EE-8FC4A89F4671.data"},"259,1":{"$ref":"B5611746-9504-11E1-93EE-8FC4A89F4671.data"},"26,1":{"$ref":"B6682E2C-9504-11E1-93EE-8FC4A89F4671.data"},"260,1":{"$ref":"B53C8502-9504-11E1-93EE-8FC4A89F4671.data"},"261,1":{"$ref":"B6126A28-9504-11E1-93EE-8FC4A89F4671.data"},"262,1":{"$ref":"B543A3E6-9504-11E1-93EE-8FC4A89F4671.data"},"263,1":{"$ref":"B5F92342-9504-11E1-93EE-8FC4A89F4671.data"},"264,1":{"$ref":"B570A90E-9504-11E1-93EE-8FC4A89F4671.data"},"265,1":{"$ref":"B60B1D2C-9504-11E1-93EE-8FC4A89F4671.data"},"266,1":{"$ref":"B5539166-9504-11E1-93EE-8FC4A89F4671.data"},"267,1":{"$ref":"B60EF956-9504-11E1-93EE-8FC4A89F4671.data"},"268,1":{"$ref":"B541643C-9504-11E1-93EE-8FC4A89F4671.data"},"269,1":{"$ref":"B61F7240-9504-11E1-93EE-8FC4A89F4671.data"},"27,1":{"$ref":"B55B72FA-9504-11E1-93EE-8FC4A89F4671.data"},"270,1":{"$ref":"B659E5BA-9504-11E1-93EE-8FC4A89F4671.data"},"271,1":{"$ref":"B5507C2E-9504-11E1-93EE-8FC4A89F4671.data"},"272,1":{"$ref":"B62C8B74-9504-11E1-93EE-8FC4A89F4671.data"},"273,1":{"$ref":"B66DF4D8-9504-11E1-93EE-8FC4A89F4671.data"},"274,1":{"$ref":"B6324AD2-9504-11E1-93EE-8FC4A89F4671.data"},"275,1":{"$ref":"B4EE34C4-9504-11E1-93EE-8FC4A89F4671.data"},"276,1":{"$ref":"B5F79F9A-9504-11E1-93EE-8FC4A89F4671.data"},"277,1":{"$ref":"B503D81A-9504-11E1-93EE-8FC4A89F4671.data"},"278,1":{"$ref":"B65095E6-9504-11E1-93EE-8FC4A89F4671.data"},"279,1":{"$ref":"B6548D5E-9504-11E1-93EE-8FC4A89F4671.data"},"28,1":{"$ref":"B65428F0-9504-11E1-93EE-8FC4A89F4671.data"},"280,1":{"$ref":"B5E8F35A-9504-11E1-93EE-8FC4A89F4671.data"},"281,1":{"$ref":"B4F6F226-9504-11E1-93EE-8FC4A89F4671.data"},"282,1":{"$ref":"B5B0E4D8-9504-11E1-93EE-8FC4A89F4671.data"},"283,1":{"$ref":"B54E2A1E-9504-11E1-93EE-8FC4A89F4671.data"},"284,1":{"$ref":"B54C3C4A-9504-11E1-93EE-8FC4A89F4671.data"},"285,1":{"$ref":"B4EA0ED0-9504-11E1-93EE-8FC4A89F4671.data"},"286,1":{"$ref":"B60AB9C2-9504-11E1-93EE-8FC4A89F4671.data"},"287,1":{"$ref":"B68206EE-9504-11E1-93EE-8FC4A89F4671.data"},"288,1":{"$ref":"B5EF1456-9504-11E1-93EE-8FC4A89F4671.data"},"289,1":{"$ref":"B566090E-9504-11E1-93EE-8FC4A89F4671.data"},"29,1":{"$ref":"B51688D4-9504-11E1-93EE-8FC4A89F4671.data"},"290,1":{"$ref":"B52875DA-9504-11E1-93EE-8FC4A89F4671.data"},"291,1":{"$ref":"B51B82E4-9504-11E1-93EE-8FC4A89F4671.data"},"292,1":{"$ref":"B64B4000-9504-11E1-93EE-8FC4A89F4671.data"},"293,1":{"$ref":"B4F44A9E-9504-11E1-93EE-8FC4A89F4671.data"},"293,2":{"$ref":"B636DD72-9504-11E1-93EE-8FC4A89F4671.data"},"294,1":{"$ref":"B56C86F8-9504-11E1-93EE-8FC4A89F4671.data"},"295,1":{"$ref":"B5E0F088-9504-11E1-93EE-8FC4A89F4671.data"},"295,2":{"$ref":"B604F578-9504-11E1-93EE-8FC4A89F4671.data"},"296,1":{"$ref":"B4F2C4E4-9504-11E1-93EE-8FC4A89F4671.data"},"297,1":{"$ref":"B6763A62-9504-11E1-93EE-8FC4A89F4671.data"},"298,1":{"$ref":"B5784308-9504-11E1-93EE-8FC4A89F4671.data"},"299,1":{"$ref":"B50250B2-9504-11E1-93EE-8FC4A89F4671.data"},"3,1":{"$ref":"B662B83E-9504-11E1-93EE-8FC4A89F4671.data"},"30,1":{"$ref":"B6711014-9504-11E1-93EE-8FC4A89F4671.data"},"300,1":{"$ref":"B559301C-9504-11E1-93EE-8FC4A89F4671.data"},"301,1":{"$ref":"B6349418-9504-11E1-93EE-8FC4A89F4671.data"},"302,1":{"$ref":"B535CC94-9504-11E1-93EE-8FC4A89F4671.data"},"303,1":{"$ref":"B60494D4-9504-11E1-93EE-8FC4A89F4671.data"},"304,1":{"$ref":"B582134C-9504-11E1-93EE-8FC4A89F4671.data"},"305,1":{"$ref":"B688A8AA-9504-11E1-93EE-8FC4A89F4671.data"},"306,1":{"$ref":"B5C89F10-9504-11E1-93EE-8FC4A89F4671.data"},"307,1":{"$ref":"B569C6AC-9504-11E1-93EE-8FC4A89F4671.data"},"308,1":{"$ref":"B53B5D62-9504-11E1-93EE-8FC4A89F4671.data"},"309,1":{"$ref":"B6215C9A-9504-11E1-93EE-8FC4A89F4671.data"},"309,2":{"$ref":"B55CF29C-9504-11E1-93EE-8FC4A89F4671.data"},"31,1":{"$ref":"B51F4B86-9504-11E1-93EE-8FC4A89F4671.data"},"310,1":{"$ref":"B4F50B6E-9504-11E1-93EE-8FC4A89F4671.data"},"310,2":{"$ref":"B5DC6068-9504-11E1-93EE-8FC4A89F4671.data"},"311,1":{"$ref":"B62F3A68-9504-11E1-93EE-8FC4A89F4671.data"},"312,1":{"$ref":"B64A1928-9504-11E1-93EE-8FC4A89F4671.data"},"313,1":{"$ref":"B68725AC-9504-11E1-93EE-8FC4A89F4671.data"},"314,1":{"$ref":"B58396CC-9504-11E1-93EE-8FC4A89F4671.data"},"315,1":{"$ref":"B64E4B9C-9504-11E1-93EE-8FC4A89F4671.data"},"316,1":{"$ref":"B5BC2B04-9504-11E1-93EE-8FC4A89F4671.data"},"317,1":{"$ref":"B5D2479A-9504-11E1-93EE-8FC4A89F4671.data"},"317,2":{"$ref":"B5AE9EBC-9504-11E1-93EE-8FC4A89F4671.data"},"318,1":{"$ref":"B5DB3A44-9504-11E1-93EE-8FC4A89F4671.data"},"318,2":{"$ref":"B4FE238E-9504-11E1-93EE-8FC4A89F4671.data"},"319,1":{"$ref":"B5B92DBE-9504-11E1-93EE-8FC4A89F4671.data"},"319,2":{"$ref":"B50B08D8-9504-11E1-93EE-8FC4A89F4671.data"},"32,1":{"$ref":"B5E28114-9504-11E1-93EE-8FC4A89F4671.data"},"320,1":{"$ref":"B62980FA-9504-11E1-93EE-8FC4A89F4671.data"},"321,1":{"$ref":"B5C16C4A-9504-11E1-93EE-8FC4A89F4671.data"},"322,1":{"$ref":"B5E1C206-9504-11E1-93EE-8FC4A89F4671.data"},"323,1":{"$ref":"B601855A-9504-11E1-93EE-8FC4A89F4671.data"},"324,1":{"$ref":"B5F98602-9504-11E1-93EE-8FC4A89F4671.data"},"324,3":{"$ref":"B611442C-9504-11E1-93EE-8FC4A89F4671.data"},"325,1":{"$ref":"B5740B12-9504-11E1-93EE-8FC4A89F4671.data"},"326,1":{"$ref":"B562F606-9504-11E1-93EE-8FC4A89F4671.data"},"327,1":{"$ref":"B5FA479A-9504-11E1-93EE-8FC4A89F4671.data"},"328,1":{"$ref":"B6598304-9504-11E1-93EE-8FC4A89F4671.data"},"328,3":{"$ref":"B537AFDC-9504-11E1-93EE-8FC4A89F4671.data"},"329,1":{"$ref":"B4ED1382-9504-11E1-93EE-8FC4A89F4671.data"},"33,1":{"$ref":"B57C6FBE-9504-11E1-93EE-8FC4A89F4671.data"},"330,1":{"$ref":"B594FD9A-9504-11E1-93EE-8FC4A89F4671.data"},"331,1":{"$ref":"B5B389EA-9504-11E1-93EE-8FC4A89F4671.data"},"332,1":{"$ref":"B5B7AE6C-9504-11E1-93EE-8FC4A89F4671.data"},"333,1":{"$ref":"B5E5EC82-9504-11E1-93EE-8FC4A89F4671.data"},"334,1":{"$ref":"B5294C1C-9504-11E1-93EE-8FC4A89F4671.data"},"335,1":{"$ref":"B4F690C4-9504-11E1-93EE-8FC4A89F4671.data"},"335,2":{"$ref":"B56E078A-9504-11E1-93EE-8FC4A89F4671.data"},"336,1":{"$ref":"B5C6A6D8-9504-11E1-93EE-8FC4A89F4671.data"},"337,1":{"$ref":"B626D4C2-9504-11E1-93EE-8FC4A89F4671.data"},"338,1":{"$ref":"B55D56E2-9504-11E1-93EE-8FC4A89F4671.data"},"339,1":{"$ref":"B5636226-9504-11E1-93EE-8FC4A89F4671.data"},"34,1":{"$ref":"B5A5788C-9504-11E1-93EE-8FC4A89F4671.data"},"340,1":{"$ref":"B63EFEEE-9504-11E1-93EE-8FC4A89F4671.data"},"341,2":{"$ref":"B4F3E7F2-9504-11E1-93EE-8FC4A89F4671.data"},"342,1":{"$ref":"B66E56E4-9504-11E1-93EE-8FC4A89F4671.data"},"343,1":{"$ref":"B53C229C-9504-11E1-93EE-8FC4A89F4671.data"},"344,1":{"$ref":"B548F274-9504-11E1-93EE-8FC4A89F4671.data"},"345,2":{"$ref":"B5193C64-9504-11E1-93EE-8FC4A89F4671.data"},"346,1":{"$ref":"B62ED6AE-9504-11E1-93EE-8FC4A89F4671.data"},"347,1":{"$ref":"B6657E34-9504-11E1-93EE-8FC4A89F4671.data"},"348,1":{"$ref":"B57A90EA-9504-11E1-93EE-8FC4A89F4671.data"},"349,2":{"$ref":"B52FBF02-9504-11E1-93EE-8FC4A89F4671.data"},"35,1":{"$ref":"B61832DC-9504-11E1-93EE-8FC4A89F4671.data"},"350,1":{"$ref":"B5EF72B6-9504-11E1-93EE-8FC4A89F4671.data"},"350,2":{"$ref":"B4F0D634-9504-11E1-93EE-8FC4A89F4671.data"},"351,1":{"$ref":"B5C7DDBE-9504-11E1-93EE-8FC4A89F4671.data"},"352,2":{"$ref":"B62B07C2-9504-11E1-93EE-8FC4A89F4671.data"},"353,1":{"$ref":"B660CB28-9504-11E1-93EE-8FC4A89F4671.data"},"354,1":{"$ref":"B4F19D80-9504-11E1-93EE-8FC4A89F4671.data"},"355,1":{"$ref":"B4F81444-9504-11E1-93EE-8FC4A89F4671.data"},"356,1":{"$ref":"B5684930-9504-11E1-93EE-8FC4A89F4671.data"},"357,1":{"$ref":"B5CA9838-9504-11E1-93EE-8FC4A89F4671.data"},"358,1":{"$ref":"B58D1FB2-9504-11E1-93EE-8FC4A89F4671.data"},"359,1":{"$ref":"B5764C88-9504-11E1-93EE-8FC4A89F4671.data"},"36,1":{"$ref":"B4EA6EF2-9504-11E1-93EE-8FC4A89F4671.data"},"360,1":{"$ref":"B665DE88-9504-11E1-93EE-8FC4A89F4671.data"},"361,1":{"$ref":"B50DCC9E-9504-11E1-93EE-8FC4A89F4671.data"},"361,2":{"$ref":"B603D1CA-9504-11E1-93EE-8FC4A89F4671.data"},"362,1":{"$ref":"B5931FA2-9504-11E1-93EE-8FC4A89F4671.data"},"363,1":{"$ref":"B66ADE9C-9504-11E1-93EE-8FC4A89F4671.data"},"364,1":{"$ref":"B5C707B8-9504-11E1-93EE-8FC4A89F4671.data"},"365,1":{"$ref":"B5CECD9A-9504-11E1-93EE-8FC4A89F4671.data"},"366,1":{"$ref":"B520CF06-9504-11E1-93EE-8FC4A89F4671.data"},"367,1":{"$ref":"B680220C-9504-11E1-93EE-8FC4A89F4671.data"},"368,1":{"$ref":"B5875974-9504-11E1-93EE-8FC4A89F4671.data"},"369,1":{"$ref":"B6254DC8-9504-11E1-93EE-8FC4A89F4671.data"},"37,1":{"$ref":"B6043228-9504-11E1-93EE-8FC4A89F4671.data"},"370,1":{"$ref":"B64F6F68-9504-11E1-93EE-8FC4A89F4671.data"},"370,2":{"$ref":"B59EB9AC-9504-11E1-93EE-8FC4A89F4671.data"},"371,1":{"$ref":"B5770CC2-9504-11E1-93EE-8FC4A89F4671.data"},"372,1":{"$ref":"B553F0A2-9504-11E1-93EE-8FC4A89F4671.data"},"373,1":{"$ref":"B67B3030-9504-11E1-93EE-8FC4A89F4671.data"},"374,1":{"$ref":"B6794928-9504-11E1-93EE-8FC4A89F4671.data"},"375,1":{"$ref":"B51C4210-9504-11E1-93EE-8FC4A89F4671.data"},"376,1":{"$ref":"B5BF2A2A-9504-11E1-93EE-8FC4A89F4671.data"},"377,1":{"$ref":"B67A6EDE-9504-11E1-93EE-8FC4A89F4671.data"},"378,1":{"$ref":"B677C49A-9504-11E1-93EE-8FC4A89F4671.data"},"379,1":{"$ref":"B5101AA8-9504-11E1-93EE-8FC4A89F4671.data"},"38,1":{"$ref":"B585188A-9504-11E1-93EE-8FC4A89F4671.data"},"380,1":{"$ref":"B5A8861C-9504-11E1-93EE-8FC4A89F4671.data"},"381,1":{"$ref":"B62FFE1C-9504-11E1-93EE-8FC4A89F4671.data"},"382,1":{"$ref":"B67B939A-9504-11E1-93EE-8FC4A89F4671.data"},"382,2":{"$ref":"B5AD20DC-9504-11E1-93EE-8FC4A89F4671.data"},"383,1":{"$ref":"B5F5B8B0-9504-11E1-93EE-8FC4A89F4671.data"},"384,1":{"$ref":"B56B5256-9504-11E1-93EE-8FC4A89F4671.data"},"385,1":{"$ref":"B54CA1DA-9504-11E1-93EE-8FC4A89F4671.data"},"385,2":{"$ref":"B60D71A8-9504-11E1-93EE-8FC4A89F4671.data"},"386,1":{"$ref":"B63C53B0-9504-11E1-93EE-8FC4A89F4671.data"},"387,1":{"$ref":"B5CC86CA-9504-11E1-93EE-8FC4A89F4671.data"},"388,1":{"$ref":"B65034DE-9504-11E1-93EE-8FC4A89F4671.data"},"389,1":{"$ref":"B5908080-9504-11E1-93EE-8FC4A89F4671.data"},"39,1":{"$ref":"B5261B6E-9504-11E1-93EE-8FC4A89F4671.data"},"39,2":{"$ref":"B609939E-9504-11E1-93EE-8FC4A89F4671.data"},"390,1":{"$ref":"B5734A2E-9504-11E1-93EE-8FC4A89F4671.data"},"391,1":{"$ref":"B684C9F6-9504-11E1-93EE-8FC4A89F4671.data"},"392,1":{"$ref":"B6030D3A-9504-11E1-93EE-8FC4A89F4671.data"},"393,1":{"$ref":"B5C1C94C-9504-11E1-93EE-8FC4A89F4671.data"},"394,1":{"$ref":"B5138454-9504-11E1-93EE-8FC4A89F4671.data"},"395,1":{"$ref":"B584592C-9504-11E1-93EE-8FC4A89F4671.data"},"396,1":{"$ref":"B524987A-9504-11E1-93EE-8FC4A89F4671.data"},"397,1":{"$ref":"B623C318-9504-11E1-93EE-8FC4A89F4671.data"},"398,1":{"$ref":"B6561304-9504-11E1-93EE-8FC4A89F4671.data"},"399,1":{"$ref":"B6261168-9504-11E1-93EE-8FC4A89F4671.data"},"4,1":{"$ref":"B5206F52-9504-11E1-93EE-8FC4A89F4671.data"},"40,1":{"$ref":"B683F7D8-9504-11E1-93EE-8FC4A89F4671.data"},"400,1":{"$ref":"B5E7D218-9504-11E1-93EE-8FC4A89F4671.data"},"401,1":{"$ref":"B5C46A76-9504-11E1-93EE-8FC4A89F4671.data"},"402,1":{"$ref":"B5F0FC12-9504-11E1-93EE-8FC4A89F4671.data"},"403,1":{"$ref":"B65BCD9E-9504-11E1-93EE-8FC4A89F4671.data"},"404,1":{"$ref":"B572296E-9504-11E1-93EE-8FC4A89F4671.data"},"405,1":{"$ref":"B4E94838-9504-11E1-93EE-8FC4A89F4671.data"},"406,1":{"$ref":"B554B17C-9504-11E1-93EE-8FC4A89F4671.data"},"406,2":{"$ref":"B6730BF8-9504-11E1-93EE-8FC4A89F4671.data"},"407,1":{"$ref":"B6285AD6-9504-11E1-93EE-8FC4A89F4671.data"},"408,1":{"$ref":"B526DE82-9504-11E1-93EE-8FC4A89F4671.data"},"409,1":{"$ref":"B585D95A-9504-11E1-93EE-8FC4A89F4671.data"},"41,1":{"$ref":"B60060B2-9504-11E1-93EE-8FC4A89F4671.data"},"410,1":{"$ref":"B62B6906-9504-11E1-93EE-8FC4A89F4671.data"},"411,1":{"$ref":"B5623568-9504-11E1-93EE-8FC4A89F4671.data"},"412,1":{"$ref":"B5A21AAC-9504-11E1-93EE-8FC4A89F4671.data"},"413,1":{"$ref":"B6132FE4-9504-11E1-93EE-8FC4A89F4671.data"},"413,2":{"$ref":"B5B62C7C-9504-11E1-93EE-8FC4A89F4671.data"},"414,1":{"$ref":"B61B3DF6-9504-11E1-93EE-8FC4A89F4671.data"},"415,1":{"$ref":"B658BFD2-9504-11E1-93EE-8FC4A89F4671.data"},"416,1":{"$ref":"B676FCFE-9504-11E1-93EE-8FC4A89F4671.data"},"417,1":{"$ref":"B6195702-9504-11E1-93EE-8FC4A89F4671.data"},"417,2":{"$ref":"B5368B70-9504-11E1-93EE-8FC4A89F4671.data"},"418,1":{"$ref":"B59AB3B6-9504-11E1-93EE-8FC4A89F4671.data"},"418,2":{"$ref":"B6600BAC-9504-11E1-93EE-8FC4A89F4671.data"},"419,1":{"$ref":"B5A099D4-9504-11E1-93EE-8FC4A89F4671.data"},"42,1":{"$ref":"B5961D38-9504-11E1-93EE-8FC4A89F4671.data"},"420,1":{"$ref":"B5E52946-9504-11E1-93EE-8FC4A89F4671.data"},"421,1":{"$ref":"B67170A4-9504-11E1-93EE-8FC4A89F4671.data"},"422,1":{"$ref":"B58D7F70-9504-11E1-93EE-8FC4A89F4671.data"},"423,1":{"$ref":"B51B2146-9504-11E1-93EE-8FC4A89F4671.data"},"424,1":{"$ref":"B5863A58-9504-11E1-93EE-8FC4A89F4671.data"},"425,1":{"$ref":"B549BA6A-9504-11E1-93EE-8FC4A89F4671.data"},"426,1":{"$ref":"B5678716-9504-11E1-93EE-8FC4A89F4671.data"},"427,1":{"$ref":"B50CFAEE-9504-11E1-93EE-8FC4A89F4671.data"},"428,1":{"$ref":"B57C0ECA-9504-11E1-93EE-8FC4A89F4671.data"},"429,1":{"$ref":"B63DDBB8-9504-11E1-93EE-8FC4A89F4671.data"},"43,1":{"$ref":"B60F5AA4-9504-11E1-93EE-8FC4A89F4671.data"},"430,1":{"$ref":"B4FA5B0A-9504-11E1-93EE-8FC4A89F4671.data"},"431,1":{"$ref":"B5DF0B9C-9504-11E1-93EE-8FC4A89F4671.data"},"432,1":{"$ref":"B58BFE7A-9504-11E1-93EE-8FC4A89F4671.data"},"433,1":{"$ref":"B4FB1DBA-9504-11E1-93EE-8FC4A89F4671.data"},"434,1":{"$ref":"B4F937F2-9504-11E1-93EE-8FC4A89F4671.data"},"435,1":{"$ref":"B66F1A66-9504-11E1-93EE-8FC4A89F4671.data"},"436,1":{"$ref":"B5E02D7E-9504-11E1-93EE-8FC4A89F4671.data"},"437,1":{"$ref":"B533E96A-9504-11E1-93EE-8FC4A89F4671.data"},"438,1":{"$ref":"B5776CD0-9504-11E1-93EE-8FC4A89F4671.data"},"439,1":{"$ref":"B6157998-9504-11E1-93EE-8FC4A89F4671.data"},"44,2":{"$ref":"B5AEFF06-9504-11E1-93EE-8FC4A89F4671.data"},"440,1":{"$ref":"B62E768C-9504-11E1-93EE-8FC4A89F4671.data"},"441,1":{"$ref":"B525BAFC-9504-11E1-93EE-8FC4A89F4671.data"},"442,1":{"$ref":"B668F1EA-9504-11E1-93EE-8FC4A89F4671.data"},"443,1":{"$ref":"B55E1668-9504-11E1-93EE-8FC4A89F4671.data"},"444,1":{"$ref":"B661F3F4-9504-11E1-93EE-8FC4A89F4671.data"},"445,1":{"$ref":"B54FBB22-9504-11E1-93EE-8FC4A89F4671.data"},"446,1":{"$ref":"B4EFB588-9504-11E1-93EE-8FC4A89F4671.data"},"447,1":{"$ref":"B602ACF0-9504-11E1-93EE-8FC4A89F4671.data"},"448,1":{"$ref":"B655B2A6-9504-11E1-93EE-8FC4A89F4671.data"},"449,1":{"$ref":"B667CC34-9504-11E1-93EE-8FC4A89F4671.data"},"45,1":{"$ref":"B6476778-9504-11E1-93EE-8FC4A89F4671.data"},"450,1":{"$ref":"B686B5AE-9504-11E1-93EE-8FC4A89F4671.data"},"451,1":{"$ref":"B59DF8BE-9504-11E1-93EE-8FC4A89F4671.data"},"452,1":{"$ref":"B68B5186-9504-11E1-93EE-8FC4A89F4671.data"},"453,1":{"$ref":"B50C9C70-9504-11E1-93EE-8FC4A89F4671.data"},"454,1":{"$ref":"B4F8D5DC-9504-11E1-93EE-8FC4A89F4671.data"},"455,1":{"$ref":"B63D17DC-9504-11E1-93EE-8FC4A89F4671.data"},"456,1":{"$ref":"B4EDD3D0-9504-11E1-93EE-8FC4A89F4671.data"},"457,1":{"$ref":"B60A564E-9504-11E1-93EE-8FC4A89F4671.data"},"458,1":{"$ref":"B62C2D14-9504-11E1-93EE-8FC4A89F4671.data"},"459,1":{"$ref":"B617D0BC-9504-11E1-93EE-8FC4A89F4671.data"},"459,2":{"$ref":"B53143B8-9504-11E1-93EE-8FC4A89F4671.data"},"46,1":{"$ref":"B5055D48-9504-11E1-93EE-8FC4A89F4671.data"},"460,1":{"$ref":"B4F56D34-9504-11E1-93EE-8FC4A89F4671.data"},"461,1":{"$ref":"B64ADBBA-9504-11E1-93EE-8FC4A89F4671.data"},"462,1":{"$ref":"B579CDEA-9504-11E1-93EE-8FC4A89F4671.data"},"463,1":{"$ref":"B5C9C8D6-9504-11E1-93EE-8FC4A89F4671.data"},"464,1":{"$ref":"B550DD0E-9504-11E1-93EE-8FC4A89F4671.data"},"465,1":{"$ref":"B6120934-9504-11E1-93EE-8FC4A89F4671.data"},"466,1":{"$ref":"B5F30250-9504-11E1-93EE-8FC4A89F4671.data"},"467,1":{"$ref":"B534A8B4-9504-11E1-93EE-8FC4A89F4671.data"},"468,1":{"$ref":"B5EFD58A-9504-11E1-93EE-8FC4A89F4671.data"},"469,1":{"$ref":"B5489324-9504-11E1-93EE-8FC4A89F4671.data"},"47,1":{"$ref":"B66CC662-9504-11E1-93EE-8FC4A89F4671.data"},"470,1":{"$ref":"B674A54E-9504-11E1-93EE-8FC4A89F4671.data"},"471,1":{"$ref":"B6107FC4-9504-11E1-93EE-8FC4A89F4671.data"},"472,1":{"$ref":"B59746FE-9504-11E1-93EE-8FC4A89F4671.data"},"473,1":{"$ref":"B60E95E2-9504-11E1-93EE-8FC4A89F4671.data"},"474,1":{"$ref":"B53BC162-9504-11E1-93EE-8FC4A89F4671.data"},"475,1":{"$ref":"B558D086-9504-11E1-93EE-8FC4A89F4671.data"},"476,1":{"$ref":"B6838A78-9504-11E1-93EE-8FC4A89F4671.data"},"477,1":{"$ref":"B4F7B2EC-9504-11E1-93EE-8FC4A89F4671.data"},"478,1":{"$ref":"B51E891C-9504-11E1-93EE-8FC4A89F4671.data"},"479,1":{"$ref":"B5BF8C40-9504-11E1-93EE-8FC4A89F4671.data"},"48,1":{"$ref":"B5E58A30-9504-11E1-93EE-8FC4A89F4671.data"},"480,1":{"$ref":"B6852AE0-9504-11E1-93EE-8FC4A89F4671.data"},"481,1":{"$ref":"B5B1A7BA-9504-11E1-93EE-8FC4A89F4671.data"},"482,1":{"$ref":"B5A339C8-9504-11E1-93EE-8FC4A89F4671.data"},"483,1":{"$ref":"B5DAD770-9504-11E1-93EE-8FC4A89F4671.data"},"484,1":{"$ref":"B63D7A4C-9504-11E1-93EE-8FC4A89F4671.data"},"485,1":{"$ref":"B5527006-9504-11E1-93EE-8FC4A89F4671.data"},"486,1":{"$ref":"B52EFF22-9504-11E1-93EE-8FC4A89F4671.data"},"487,1":{"$ref":"B52A0EFE-9504-11E1-93EE-8FC4A89F4671.data"},"488,1":{"$ref":"B4EBF2F4-9504-11E1-93EE-8FC4A89F4671.data"},"489,1":{"$ref":"B63863C2-9504-11E1-93EE-8FC4A89F4671.data"},"49,1":{"$ref":"B5A3FA7A-9504-11E1-93EE-8FC4A89F4671.data"},"490,1":{"$ref":"B57CCE78-9504-11E1-93EE-8FC4A89F4671.data"},"491,1":{"$ref":"B5F67AAC-9504-11E1-93EE-8FC4A89F4671.data"},"492,1":{"$ref":"B55200F8-9504-11E1-93EE-8FC4A89F4671.data"},"493,1":{"$ref":"B5BE6AAE-9504-11E1-93EE-8FC4A89F4671.data"},"493,2":{"$ref":"B5150770-9504-11E1-93EE-8FC4A89F4671.data"},"493,3":{"$ref":"B5FAA91A-9504-11E1-93EE-8FC4A89F4671.data"},"493,4":{"$ref":"B53DA734-9504-11E1-93EE-8FC4A89F4671.data"},"494,2":{"$ref":"B4FE8450-9504-11E1-93EE-8FC4A89F4671.data"},"495,1":{"$ref":"B5EBA6EA-9504-11E1-93EE-8FC4A89F4671.data"},"496,1":{"$ref":"B630BFF0-9504-11E1-93EE-8FC4A89F4671.data"},"497,1":{"$ref":"B68AEF48-9504-11E1-93EE-8FC4A89F4671.data"},"497,2":{"$ref":"B59CD146-9504-11E1-93EE-8FC4A89F4671.data"},"498,1":{"$ref":"B54044B2-9504-11E1-93EE-8FC4A89F4671.data"},"499,1":{"$ref":"B63A5880-9504-11E1-93EE-8FC4A89F4671.data"},"5,1":{"$ref":"B4ED72C8-9504-11E1-93EE-8FC4A89F4671.data"},"50,1":{"$ref":"B5D4F6AC-9504-11E1-93EE-8FC4A89F4671.data"},"500,1":{"$ref":"B5955EC0-9504-11E1-93EE-8FC4A89F4671.data"},"500,2":{"$ref":"B64953BC-9504-11E1-93EE-8FC4A89F4671.data"},"501,1":{"$ref":"B624EB9E-9504-11E1-93EE-8FC4A89F4671.data"},"502,1":{"$ref":"B65E7FA8-9504-11E1-93EE-8FC4A89F4671.data"},"503,1":{"$ref":"B54463DA-9504-11E1-93EE-8FC4A89F4671.data"},"504,1":{"$ref":"B5DD8736-9504-11E1-93EE-8FC4A89F4671.data"},"505,1":{"$ref":"B6086BC2-9504-11E1-93EE-8FC4A89F4671.data"},"506,1":{"$ref":"B59B754E-9504-11E1-93EE-8FC4A89F4671.data"},"507,1":{"$ref":"B5D94964-9504-11E1-93EE-8FC4A89F4671.data"},"508,1":{"$ref":"B66955C2-9504-11E1-93EE-8FC4A89F4671.data"},"509,1":{"$ref":"B507A0D0-9504-11E1-93EE-8FC4A89F4671.data"},"51,1":{"$ref":"B6330B20-9504-11E1-93EE-8FC4A89F4671.data"},"510,1":{"$ref":"B638CE70-9504-11E1-93EE-8FC4A89F4671.data"},"511,1":{"$ref":"B62CEE98-9504-11E1-93EE-8FC4A89F4671.data"},"512,1":{"$ref":"B635B8DE-9504-11E1-93EE-8FC4A89F4671.data"},"513,1":{"$ref":"B51FAE50-9504-11E1-93EE-8FC4A89F4671.data"},"514,1":{"$ref":"B66F883E-9504-11E1-93EE-8FC4A89F4671.data"},"515,1":{"$ref":"B5B98EDA-9504-11E1-93EE-8FC4A89F4671.data"},"515,2":{"$ref":"B64576F2-9504-11E1-93EE-8FC4A89F4671.data"},"516,1":{"$ref":"B687868C-9504-11E1-93EE-8FC4A89F4671.data"},"517,1":{"$ref":"B618952E-9504-11E1-93EE-8FC4A89F4671.data"},"518,1":{"$ref":"B664B6F2-9504-11E1-93EE-8FC4A89F4671.data"},"519,1":{"$ref":"B5728940-9504-11E1-93EE-8FC4A89F4671.data"},"52,1":{"$ref":"B4F26602-9504-11E1-93EE-8FC4A89F4671.data"},"520,1":{"$ref":"B596E538-9504-11E1-93EE-8FC4A89F4671.data"},"521,1":{"$ref":"B67886B4-9504-11E1-93EE-8FC4A89F4671.data"},"522,1":{"$ref":"B63ABAA0-9504-11E1-93EE-8FC4A89F4671.data"},"523,1":{"$ref":"B619B81E-9504-11E1-93EE-8FC4A89F4671.data"},"524,1":{"$ref":"B68083FA-9504-11E1-93EE-8FC4A89F4671.data"},"525,1":{"$ref":"B55A5032-9504-11E1-93EE-8FC4A89F4671.data"},"526,1":{"$ref":"B54BCDF0-9504-11E1-93EE-8FC4A89F4671.data"},"527,1":{"$ref":"B6890AFC-9504-11E1-93EE-8FC4A89F4671.data"},"528,1":{"$ref":"B52BF4F8-9504-11E1-93EE-8FC4A89F4671.data"},"529,1":{"$ref":"B546B3B0-9504-11E1-93EE-8FC4A89F4671.data"},"53,1":{"$ref":"B58ADBEE-9504-11E1-93EE-8FC4A89F4671.data"},"530,1":{"$ref":"B4EB914C-9504-11E1-93EE-8FC4A89F4671.data"},"531,1":{"$ref":"B51EEB82-9504-11E1-93EE-8FC4A89F4671.data"},"532,1":{"$ref":"B588D9E8-9504-11E1-93EE-8FC4A89F4671.data"},"533,1":{"$ref":"B5533004-9504-11E1-93EE-8FC4A89F4671.data"},"534,1":{"$ref":"B5CB5A84-9504-11E1-93EE-8FC4A89F4671.data"},"535,1":{"$ref":"B5EAD9B8-9504-11E1-93EE-8FC4A89F4671.data"},"536,1":{"$ref":"B6631A7C-9504-11E1-93EE-8FC4A89F4671.data"},"537,1":{"$ref":"B4FABAF0-9504-11E1-93EE-8FC4A89F4671.data"},"538,1":{"$ref":"B6228ACA-9504-11E1-93EE-8FC4A89F4671.data"},"539,1":{"$ref":"B5A706A2-9504-11E1-93EE-8FC4A89F4671.data"},"54,1":{"$ref":"B5F6DB64-9504-11E1-93EE-8FC4A89F4671.data"},"540,1":{"$ref":"B580328E-9504-11E1-93EE-8FC4A89F4671.data"},"541,1":{"$ref":"B5E467EA-9504-11E1-93EE-8FC4A89F4671.data"},"542,1":{"$ref":"B5C28B8E-9504-11E1-93EE-8FC4A89F4671.data"},"543,1":{"$ref":"B54ADA30-9504-11E1-93EE-8FC4A89F4671.data"},"544,1":{"$ref":"B581B1D6-9504-11E1-93EE-8FC4A89F4671.data"},"545,1":{"$ref":"B67EA04E-9504-11E1-93EE-8FC4A89F4671.data"},"546,1":{"$ref":"B5098594-9504-11E1-93EE-8FC4A89F4671.data"},"547,1":{"$ref":"B62D518A-9504-11E1-93EE-8FC4A89F4671.data"},"548,1":{"$ref":"B5D2AA14-9504-11E1-93EE-8FC4A89F4671.data"},"549,1":{"$ref":"B63E3B30-9504-11E1-93EE-8FC4A89F4671.data"},"55,1":{"$ref":"B68848A6-9504-11E1-93EE-8FC4A89F4671.data"},"550,1":{"$ref":"B5B6ED9C-9504-11E1-93EE-8FC4A89F4671.data"},"551,1":{"$ref":"B53CE6E6-9504-11E1-93EE-8FC4A89F4671.data"},"552,1":{"$ref":"B58336D2-9504-11E1-93EE-8FC4A89F4671.data"},"553,1":{"$ref":"B5D0B240-9504-11E1-93EE-8FC4A89F4671.data"},"554,1":{"$ref":"B5A9BC8A-9504-11E1-93EE-8FC4A89F4671.data"},"555,1":{"$ref":"B541C576-9504-11E1-93EE-8FC4A89F4671.data"},"556,1":{"$ref":"B53EC77C-9504-11E1-93EE-8FC4A89F4671.data"},"556,2":{"$ref":"B5FDB614-9504-11E1-93EE-8FC4A89F4671.data"},"557,1":{"$ref":"B5A39AD0-9504-11E1-93EE-8FC4A89F4671.data"},"558,1":{"$ref":"B5CAF99A-9504-11E1-93EE-8FC4A89F4671.data"},"558,2":{"$ref":"B512007A-9504-11E1-93EE-8FC4A89F4671.data"},"559,1":{"$ref":"B5666836-9504-11E1-93EE-8FC4A89F4671.data"},"56,1":{"$ref":"B58EFF6C-9504-11E1-93EE-8FC4A89F4671.data"},"560,1":{"$ref":"B5E64CEA-9504-11E1-93EE-8FC4A89F4671.data"},"561,1":{"$ref":"B5000924-9504-11E1-93EE-8FC4A89F4671.data"},"562,1":{"$ref":"B622276A-9504-11E1-93EE-8FC4A89F4671.data"},"563,1":{"$ref":"B625B006-9504-11E1-93EE-8FC4A89F4671.data"},"564,1":{"$ref":"B56F888A-9504-11E1-93EE-8FC4A89F4671.data"},"565,1":{"$ref":"B67ACF8C-9504-11E1-93EE-8FC4A89F4671.data"},"566,1":{"$ref":"B55570C6-9504-11E1-93EE-8FC4A89F4671.data"},"567,1":{"$ref":"B5B0827C-9504-11E1-93EE-8FC4A89F4671.data"},"568,1":{"$ref":"B6736D14-9504-11E1-93EE-8FC4A89F4671.data"},"569,1":{"$ref":"B5901F46-9504-11E1-93EE-8FC4A89F4671.data"},"57,1":{"$ref":"B4F751DA-9504-11E1-93EE-8FC4A89F4671.data"},"570,1":{"$ref":"B591413C-9504-11E1-93EE-8FC4A89F4671.data"},"571,1":{"$ref":"B685ED86-9504-11E1-93EE-8FC4A89F4671.data"},"572,1":{"$ref":"B652F1B0-9504-11E1-93EE-8FC4A89F4671.data"},"573,1":{"$ref":"B560B60C-9504-11E1-93EE-8FC4A89F4671.data"},"574,1":{"$ref":"B6858BC0-9504-11E1-93EE-8FC4A89F4671.data"},"575,1":{"$ref":"B5BFEB22-9504-11E1-93EE-8FC4A89F4671.data"},"576,1":{"$ref":"B624880C-9504-11E1-93EE-8FC4A89F4671.data"},"577,1":{"$ref":"B5D36DAA-9504-11E1-93EE-8FC4A89F4671.data"},"578,1":{"$ref":"B4EEF2A6-9504-11E1-93EE-8FC4A89F4671.data"},"579,1":{"$ref":"B54224EE-9504-11E1-93EE-8FC4A89F4671.data"},"58,1":{"$ref":"B64706AC-9504-11E1-93EE-8FC4A89F4671.data"},"580,1":{"$ref":"B5FD5340-9504-11E1-93EE-8FC4A89F4671.data"},"581,1":{"$ref":"B5AFBF86-9504-11E1-93EE-8FC4A89F4671.data"},"582,1":{"$ref":"B54402D2-9504-11E1-93EE-8FC4A89F4671.data"},"583,1":{"$ref":"B5E70E00-9504-11E1-93EE-8FC4A89F4671.data"},"584,1":{"$ref":"B58579BA-9504-11E1-93EE-8FC4A89F4671.data"},"585,1":{"$ref":"B65737C0-9504-11E1-93EE-8FC4A89F4671.data"},"586,1":{"$ref":"B4F4AB10-9504-11E1-93EE-8FC4A89F4671.data"},"586,2":{"$ref":"B66BA12E-9504-11E1-93EE-8FC4A89F4671.data"},"587,2":{"$ref":"B57F6FB6-9504-11E1-93EE-8FC4A89F4671.data"},"588,2":{"$ref":"B59D9612-9504-11E1-93EE-8FC4A89F4671.data"},"589,1":{"$ref":"B67BF45C-9504-11E1-93EE-8FC4A89F4671.data"},"59,1":{"$ref":"B67CB824-9504-11E1-93EE-8FC4A89F4671.data"},"590,2":{"$ref":"B5E3A5DA-9504-11E1-93EE-8FC4A89F4671.data"},"591,2":{"$ref":"B61DECB8-9504-11E1-93EE-8FC4A89F4671.data"},"592,2":{"$ref":"B5949CEC-9504-11E1-93EE-8FC4A89F4671.data"},"593,2":{"$ref":"B6637E7C-9504-11E1-93EE-8FC4A89F4671.data"},"594,2":{"$ref":"B50439CC-9504-11E1-93EE-8FC4A89F4671.data"},"595,1":{"$ref":"B62BCAB8-9504-11E1-93EE-8FC4A89F4671.data"},"596,2":{"$ref":"B666431E-9504-11E1-93EE-8FC4A89F4671.data"},"597,2":{"$ref":"B55F3890-9504-11E1-93EE-8FC4A89F4671.data"},"597,3":{"$ref":"B52AD334-9504-11E1-93EE-8FC4A89F4671.data"},"598,2":{"$ref":"B67DDCEA-9504-11E1-93EE-8FC4A89F4671.data"},"599,2":{"$ref":"B5CF2D1C-9504-11E1-93EE-8FC4A89F4671.data"},"6,1":{"$ref":"B5FE7A2C-9504-11E1-93EE-8FC4A89F4671.data"},"60,1":{"$ref":"B67C55DC-9504-11E1-93EE-8FC4A89F4671.data"},"600,1":{"$ref":"B554515A-9504-11E1-93EE-8FC4A89F4671.data"},"601,2":{"$ref":"B5B2C9E2-9504-11E1-93EE-8FC4A89F4671.data"},"602,2":{"$ref":"B5A6A432-9504-11E1-93EE-8FC4A89F4671.data"},"603,1":{"$ref":"B57AEFF4-9504-11E1-93EE-8FC4A89F4671.data"},"604,2":{"$ref":"B5D3D088-9504-11E1-93EE-8FC4A89F4671.data"},"605,2":{"$ref":"B52C5790-9504-11E1-93EE-8FC4A89F4671.data"},"606,1":{"$ref":"B58FBD94-9504-11E1-93EE-8FC4A89F4671.data"},"607,1":{"$ref":"B55DB4C0-9504-11E1-93EE-8FC4A89F4671.data"},"608,1":{"$ref":"B66FEA68-9504-11E1-93EE-8FC4A89F4671.data"},"609,2":{"$ref":"B60BDF50-9504-11E1-93EE-8FC4A89F4671.data"},"61,1":{"$ref":"B5C40932-9504-11E1-93EE-8FC4A89F4671.data"},"610,1":{"$ref":"B5E76FB2-9504-11E1-93EE-8FC4A89F4671.data"},"611,3":{"$ref":"B500CBDE-9504-11E1-93EE-8FC4A89F4671.data"},"612,2":{"$ref":"B638017A-9504-11E1-93EE-8FC4A89F4671.data"},"613,2":{"$ref":"B66C0218-9504-11E1-93EE-8FC4A89F4671.data"},"614,2":{"$ref":"B59D32B2-9504-11E1-93EE-8FC4A89F4671.data"},"615,2":{"$ref":"B5D110AA-9504-11E1-93EE-8FC4A89F4671.data"},"615,3":{"$ref":"B5D1723E-9504-11E1-93EE-8FC4A89F4671.data"},"616,2":{"$ref":"B4FD6426-9504-11E1-93EE-8FC4A89F4671.data"},"617,1":{"$ref":"B561772C-9504-11E1-93EE-8FC4A89F4671.data"},"617,3":{"$ref":"B61A7D26-9504-11E1-93EE-8FC4A89F4671.data"},"618,2":{"$ref":"B58DDE98-9504-11E1-93EE-8FC4A89F4671.data"},"619,2":{"$ref":"B595BDFC-9504-11E1-93EE-8FC4A89F4671.data"},"62,1":{"$ref":"B6625588-9504-11E1-93EE-8FC4A89F4671.data"},"620,2":{"$ref":"B613907E-9504-11E1-93EE-8FC4A89F4671.data"},"621,2":{"$ref":"B5E15E88-9504-11E1-93EE-8FC4A89F4671.data"},"622,2":{"$ref":"B67F610A-9504-11E1-93EE-8FC4A89F4671.data"},"623,1":{"$ref":"B4F32628-9504-11E1-93EE-8FC4A89F4671.data"},"624,2":{"$ref":"B5E4C8C0-9504-11E1-93EE-8FC4A89F4671.data"},"625,2":{"$ref":"B5CF8E56-9504-11E1-93EE-8FC4A89F4671.data"},"626,2":{"$ref":"B504FB14-9504-11E1-93EE-8FC4A89F4671.data"},"627,2":{"$ref":"B5F03624-9504-11E1-93EE-8FC4A89F4671.data"},"628,2":{"$ref":"B5ED8B5E-9504-11E1-93EE-8FC4A89F4671.data"},"629,2":{"$ref":"B542E49C-9504-11E1-93EE-8FC4A89F4671.data"},"63,1":{"$ref":"B597A7B6-9504-11E1-93EE-8FC4A89F4671.data"},"630,1":{"$ref":"B5FCF012-9504-11E1-93EE-8FC4A89F4671.data"},"631,2":{"$ref":"B666A67E-9504-11E1-93EE-8FC4A89F4671.data"},"632,2":{"$ref":"B634F534-9504-11E1-93EE-8FC4A89F4671.data"},"632,3":{"$ref":"B5483230-9504-11E1-93EE-8FC4A89F4671.data"},"633,1":{"$ref":"B544CBF4-9504-11E1-93EE-8FC4A89F4671.data"},"634,2":{"$ref":"B52D7BCA-9504-11E1-93EE-8FC4A89F4671.data"},"634,3":{"$ref":"B6579A9E-9504-11E1-93EE-8FC4A89F4671.data"},"635,2":{"$ref":"B58A5962-9504-11E1-93EE-8FC4A89F4671.data"},"636,2":{"$ref":"B65B08B4-9504-11E1-93EE-8FC4A89F4671.data"},"636,3":{"$ref":"B573A96A-9504-11E1-93EE-8FC4A89F4671.data"},"637,2":{"$ref":"B506DE7A-9504-11E1-93EE-8FC4A89F4671.data"},"638,2":{"$ref":"B675CC76-9504-11E1-93EE-8FC4A89F4671.data"},"639,1":{"$ref":"B5C04B9E-9504-11E1-93EE-8FC4A89F4671.data"},"64,1":{"$ref":"B644B410-9504-11E1-93EE-8FC4A89F4671.data"},"640,2":{"$ref":"B522B474-9504-11E1-93EE-8FC4A89F4671.data"},"641,1":{"$ref":"B5113E42-9504-11E1-93EE-8FC4A89F4671.data"},"642,2":{"$ref":"B524363C-9504-11E1-93EE-8FC4A89F4671.data"},"643,2":{"$ref":"B556F040-9504-11E1-93EE-8FC4A89F4671.data"},"644,1":{"$ref":"B63CB6A2-9504-11E1-93EE-8FC4A89F4671.data"},"645,2":{"$ref":"B51A5E46-9504-11E1-93EE-8FC4A89F4671.data"},"646,2":{"$ref":"B667079A-9504-11E1-93EE-8FC4A89F4671.data"},"647,2":{"$ref":"B61644F4-9504-11E1-93EE-8FC4A89F4671.data"},"648,2":{"$ref":"B5BB0CBA-9504-11E1-93EE-8FC4A89F4671.data"},"649,2":{"$ref":"B5D61DA2-9504-11E1-93EE-8FC4A89F4671.data"},"65,1":{"$ref":"B5BB6BE2-9504-11E1-93EE-8FC4A89F4671.data"},"650,2":{"$ref":"B649B5E6-9504-11E1-93EE-8FC4A89F4671.data"},"651,1":{"$ref":"B52815C2-9504-11E1-93EE-8FC4A89F4671.data"},"652,1":{"$ref":"B689CC4E-9504-11E1-93EE-8FC4A89F4671.data"},"653,2":{"$ref":"B6463AA6-9504-11E1-93EE-8FC4A89F4671.data"},"654,2":{"$ref":"B6515922-9504-11E1-93EE-8FC4A89F4671.data"},"655,2":{"$ref":"B648F1CE-9504-11E1-93EE-8FC4A89F4671.data"},"656,2":{"$ref":"B63B222E-9504-11E1-93EE-8FC4A89F4671.data"},"657,2":{"$ref":"B565A81A-9504-11E1-93EE-8FC4A89F4671.data"},"658,2":{"$ref":"B514456A-9504-11E1-93EE-8FC4A89F4671.data"},"659,2":{"$ref":"B679AB98-9504-11E1-93EE-8FC4A89F4671.data"},"66,1":{"$ref":"B65354D4-9504-11E1-93EE-8FC4A89F4671.data"},"660,2":{"$ref":"B5587212-9504-11E1-93EE-8FC4A89F4671.data"},"661,2":{"$ref":"B50AA992-9504-11E1-93EE-8FC4A89F4671.data"},"662,2":{"$ref":"B63060B4-9504-11E1-93EE-8FC4A89F4671.data"},"663,1":{"$ref":"B64CC5C4-9504-11E1-93EE-8FC4A89F4671.data"},"664,2":{"$ref":"B51878E2-9504-11E1-93EE-8FC4A89F4671.data"},"665,2":{"$ref":"B5992690-9504-11E1-93EE-8FC4A89F4671.data"},"666,2":{"$ref":"B51D658C-9504-11E1-93EE-8FC4A89F4671.data"},"667,2":{"$ref":"B6267298-9504-11E1-93EE-8FC4A89F4671.data"},"668,1":{"$ref":"B59F18DE-9504-11E1-93EE-8FC4A89F4671.data"},"669,2":{"$ref":"B4F87600-9504-11E1-93EE-8FC4A89F4671.data"},"67,1":{"$ref":"B67D16E8-9504-11E1-93EE-8FC4A89F4671.data"},"670,2":{"$ref":"B5FFFF0A-9504-11E1-93EE-8FC4A89F4671.data"},"671,2":{"$ref":"B54E91E8-9504-11E1-93EE-8FC4A89F4671.data"},"672,2":{"$ref":"B5F36632-9504-11E1-93EE-8FC4A89F4671.data"},"673,2":{"$ref":"B4F386AE-9504-11E1-93EE-8FC4A89F4671.data"},"674,2":{"$ref":"B52E9D16-9504-11E1-93EE-8FC4A89F4671.data"},"675,2":{"$ref":"B651CAC4-9504-11E1-93EE-8FC4A89F4671.data"},"676,2":{"$ref":"B5FBCDB8-9504-11E1-93EE-8FC4A89F4671.data"},"677,2":{"$ref":"B62DB21A-9504-11E1-93EE-8FC4A89F4671.data"},"678,1":{"$ref":"B65A4438-9504-11E1-93EE-8FC4A89F4671.data"},"679,2":{"$ref":"B52CB834-9504-11E1-93EE-8FC4A89F4671.data"},"68,1":{"$ref":"B53448D8-9504-11E1-93EE-8FC4A89F4671.data"},"680,1":{"$ref":"B68BB112-9504-11E1-93EE-8FC4A89F4671.data"},"681,2":{"$ref":"B65F46FE-9504-11E1-93EE-8FC4A89F4671.data"},"682,2":{"$ref":"B56EC814-9504-11E1-93EE-8FC4A89F4671.data"},"683,2":{"$ref":"B5006B76-9504-11E1-93EE-8FC4A89F4671.data"},"684,2":{"$ref":"B60DD350-9504-11E1-93EE-8FC4A89F4671.data"},"685,2":{"$ref":"B5ACC0EC-9504-11E1-93EE-8FC4A89F4671.data"},"685,3":{"$ref":"B65C2D84-9504-11E1-93EE-8FC4A89F4671.data"},"686,2":{"$ref":"B6826800-9504-11E1-93EE-8FC4A89F4671.data"},"687,1":{"$ref":"B6522DB6-9504-11E1-93EE-8FC4A89F4671.data"},"688,2":{"$ref":"B5752C7C-9504-11E1-93EE-8FC4A89F4671.data"},"689,2":{"$ref":"B5815286-9504-11E1-93EE-8FC4A89F4671.data"},"69,1":{"$ref":"B5967BB6-9504-11E1-93EE-8FC4A89F4671.data"},"690,2":{"$ref":"B57FCF6A-9504-11E1-93EE-8FC4A89F4671.data"},"691,2":{"$ref":"B5672870-9504-11E1-93EE-8FC4A89F4671.data"},"692,2":{"$ref":"B4F017BC-9504-11E1-93EE-8FC4A89F4671.data"},"693,2":{"$ref":"B51E2904-9504-11E1-93EE-8FC4A89F4671.data"},"694,2":{"$ref":"B5B74D8C-9504-11E1-93EE-8FC4A89F4671.data"},"695,2":{"$ref":"B4FFA970-9504-11E1-93EE-8FC4A89F4671.data"},"696,1":{"$ref":"B5EA77E8-9504-11E1-93EE-8FC4A89F4671.data"},"697,2":{"$ref":"B5B32928-9504-11E1-93EE-8FC4A89F4671.data"},"698,2":{"$ref":"B643918E-9504-11E1-93EE-8FC4A89F4671.data"},"699,2":{"$ref":"B51AC0E8-9504-11E1-93EE-8FC4A89F4671.data"},"7,1":{"$ref":"B5350B2E-9504-11E1-93EE-8FC4A89F4671.data"},"70,1":{"$ref":"B5D87610-9504-11E1-93EE-8FC4A89F4671.data"},"700,2":{"$ref":"B6724736-9504-11E1-93EE-8FC4A89F4671.data"},"701,2":{"$ref":"B5FF3B4C-9504-11E1-93EE-8FC4A89F4671.data"},"702,2":{"$ref":"B56AE60E-9504-11E1-93EE-8FC4A89F4671.data"},"703,1":{"$ref":"B65DBC1C-9504-11E1-93EE-8FC4A89F4671.data"},"704,2":{"$ref":"B6061872-9504-11E1-93EE-8FC4A89F4671.data"},"705,2":{"$ref":"B589F774-9504-11E1-93EE-8FC4A89F4671.data"},"706,1":{"$ref":"B530E292-9504-11E1-93EE-8FC4A89F4671.data"},"707,2":{"$ref":"B60121C8-9504-11E1-93EE-8FC4A89F4671.data"},"708,2":{"$ref":"B637A004-9504-11E1-93EE-8FC4A89F4671.data"},"709,2":{"$ref":"B592601C-9504-11E1-93EE-8FC4A89F4671.data"},"71,1":{"$ref":"B523753A-9504-11E1-93EE-8FC4A89F4671.data"},"710,1":{"$ref":"B52DDB60-9504-11E1-93EE-8FC4A89F4671.data"},"711,2":{"$ref":"B5E34400-9504-11E1-93EE-8FC4A89F4671.data"},"712,2":{"$ref":"B501EFFA-9504-11E1-93EE-8FC4A89F4671.data"},"713,2":{"$ref":"B53F23D4-9504-11E1-93EE-8FC4A89F4671.data"},"714,2":{"$ref":"B517B574-9504-11E1-93EE-8FC4A89F4671.data"},"715,2":{"$ref":"B5A6384E-9504-11E1-93EE-8FC4A89F4671.data"},"716,1":{"$ref":"B5FF9E8E-9504-11E1-93EE-8FC4A89F4671.data"},"717,2":{"$ref":"B5B3EACA-9504-11E1-93EE-8FC4A89F4671.data"},"718,2":{"$ref":"B64EABE6-9504-11E1-93EE-8FC4A89F4671.data"},"719,1":{"$ref":"B60E3516-9504-11E1-93EE-8FC4A89F4671.data"},"72,1":{"$ref":"B601E77A-9504-11E1-93EE-8FC4A89F4671.data"},"720,2":{"$ref":"B6402440-9504-11E1-93EE-8FC4A89F4671.data"},"721,1":{"$ref":"B5F21E30-9504-11E1-93EE-8FC4A89F4671.data"},"722,2":{"$ref":"B5FC2E66-9504-11E1-93EE-8FC4A89F4671.data"},"723,2":{"$ref":"B58B9EA8-9504-11E1-93EE-8FC4A89F4671.data"},"724,2":{"$ref":"B5D9B0AC-9504-11E1-93EE-8FC4A89F4671.data"},"725,2":{"$ref":"B633CDBC-9504-11E1-93EE-8FC4A89F4671.data"},"726,1":{"$ref":"B616A94E-9504-11E1-93EE-8FC4A89F4671.data"},"727,2":{"$ref":"B54EF7C8-9504-11E1-93EE-8FC4A89F4671.data"},"728,2":{"$ref":"B620FA0C-9504-11E1-93EE-8FC4A89F4671.data"},"729,2":{"$ref":"B555CF94-9504-11E1-93EE-8FC4A89F4671.data"},"73,1":{"$ref":"B4FCA0CC-9504-11E1-93EE-8FC4A89F4671.data"},"73,2":{"$ref":"B56BBB9C-9504-11E1-93EE-8FC4A89F4671.data"},"730,1":{"$ref":"B4F996AC-9504-11E1-93EE-8FC4A89F4671.data"},"731,1":{"$ref":"B5B5CB42-9504-11E1-93EE-8FC4A89F4671.data"},"732,1":{"$ref":"B4FF4822-9504-11E1-93EE-8FC4A89F4671.data"},"733,2":{"$ref":"B66769D8-9504-11E1-93EE-8FC4A89F4671.data"},"734,2":{"$ref":"B5D493CE-9504-11E1-93EE-8FC4A89F4671.data"},"735,2":{"$ref":"B6408638-9504-11E1-93EE-8FC4A89F4671.data"},"736,3":{"$ref":"B50A49C0-9504-11E1-93EE-8FC4A89F4671.data"},"737,2":{"$ref":"B57F0EC2-9504-11E1-93EE-8FC4A89F4671.data"},"737,3":{"$ref":"B510DF10-9504-11E1-93EE-8FC4A89F4671.data"},"738,2":{"$ref":"B5BA4E06-9504-11E1-93EE-8FC4A89F4671.data"},"739,2":{"$ref":"B60C4102-9504-11E1-93EE-8FC4A89F4671.data"},"74,1":{"$ref":"B681A6CC-9504-11E1-93EE-8FC4A89F4671.data"},"740,1":{"$ref":"B5B269C0-9504-11E1-93EE-8FC4A89F4671.data"},"741,2":{"$ref":"B5E83230-9504-11E1-93EE-8FC4A89F4671.data"},"742,1":{"$ref":"B53387F4-9504-11E1-93EE-8FC4A89F4671.data"},"743,2":{"$ref":"B508C06E-9504-11E1-93EE-8FC4A89F4671.data"},"744,2":{"$ref":"B59B14D2-9504-11E1-93EE-8FC4A89F4671.data"},"745,1":{"$ref":"B572E96C-9504-11E1-93EE-8FC4A89F4671.data"},"746,2":{"$ref":"B64DE922-9504-11E1-93EE-8FC4A89F4671.data"},"747,2":{"$ref":"B57E4DE8-9504-11E1-93EE-8FC4A89F4671.data"},"748,1":{"$ref":"B65E1FB8-9504-11E1-93EE-8FC4A89F4671.data"},"749,1":{"$ref":"B5EB371E-9504-11E1-93EE-8FC4A89F4671.data"},"75,1":{"$ref":"B5ADE0A8-9504-11E1-93EE-8FC4A89F4671.data"},"750,2":{"$ref":"B5A8256E-9504-11E1-93EE-8FC4A89F4671.data"},"751,1":{"$ref":"B5018EC0-9504-11E1-93EE-8FC4A89F4671.data"},"752,2":{"$ref":"B609F64A-9504-11E1-93EE-8FC4A89F4671.data"},"753,2":{"$ref":"B5A7C65A-9504-11E1-93EE-8FC4A89F4671.data"},"754,2":{"$ref":"B61EB10C-9504-11E1-93EE-8FC4A89F4671.data"},"755,2":{"$ref":"B66A7CD6-9504-11E1-93EE-8FC4A89F4671.data"},"756,2":{"$ref":"B5A038F4-9504-11E1-93EE-8FC4A89F4671.data"},"757,2":{"$ref":"B5174A12-9504-11E1-93EE-8FC4A89F4671.data"},"758,2":{"$ref":"B5FB6C92-9504-11E1-93EE-8FC4A89F4671.data"},"759,2":{"$ref":"B5F7FF58-9504-11E1-93EE-8FC4A89F4671.data"},"76,1":{"$ref":"B68A2D6A-9504-11E1-93EE-8FC4A89F4671.data"},"76,2":{"$ref":"B5C8FEE2-9504-11E1-93EE-8FC4A89F4671.data"},"760,1":{"$ref":"B505BD4C-9504-11E1-93EE-8FC4A89F4671.data"},"761,2":{"$ref":"B545303A-9504-11E1-93EE-8FC4A89F4671.data"},"762,2":{"$ref":"B610E1BC-9504-11E1-93EE-8FC4A89F4671.data"},"762,3":{"$ref":"B687E6A4-9504-11E1-93EE-8FC4A89F4671.data"},"763,2":{"$ref":"B539A166-9504-11E1-93EE-8FC4A89F4671.data"},"764,2":{"$ref":"B549578C-9504-11E1-93EE-8FC4A89F4671.data"},"765,2":{"$ref":"B67E3D48-9504-11E1-93EE-8FC4A89F4671.data"},"766,1":{"$ref":"B559EFDE-9504-11E1-93EE-8FC4A89F4671.data"},"767,2":{"$ref":"B65290DA-9504-11E1-93EE-8FC4A89F4671.data"},"768,2":{"$ref":"B5BEC972-9504-11E1-93EE-8FC4A89F4671.data"},"769,2":{"$ref":"B58EA01C-9504-11E1-93EE-8FC4A89F4671.data"},"77,1":{"$ref":"B5AF5E74-9504-11E1-93EE-8FC4A89F4671.data"},"770,2":{"$ref":"B677616C-9504-11E1-93EE-8FC4A89F4671.data"},"771,1":{"$ref":"B6704B20-9504-11E1-93EE-8FC4A89F4671.data"},"772,2":{"$ref":"B64FD232-9504-11E1-93EE-8FC4A89F4671.data"},"773,2":{"$ref":"B584B746-9504-11E1-93EE-8FC4A89F4671.data"},"774,2":{"$ref":"B63F5F4C-9504-11E1-93EE-8FC4A89F4671.data"},"775,1":{"$ref":"B6612D8E-9504-11E1-93EE-8FC4A89F4671.data"},"776,2":{"$ref":"B5AB4082-9504-11E1-93EE-8FC4A89F4671.data"},"777,2":{"$ref":"B5A15AEA-9504-11E1-93EE-8FC4A89F4671.data"},"777,3":{"$ref":"B68A8DDC-9504-11E1-93EE-8FC4A89F4671.data"},"777,4":{"$ref":"B564E7CC-9504-11E1-93EE-8FC4A89F4671.data"},"778,1":{"$ref":"B613F262-9504-11E1-93EE-8FC4A89F4671.data"},"779,1":{"$ref":"B66891E6-9504-11E1-93EE-8FC4A89F4671.data"},"78,1":{"$ref":"B5037820-9504-11E1-93EE-8FC4A89F4671.data"},"780,1":{"$ref":"B52252D6-9504-11E1-93EE-8FC4A89F4671.data"},"780,3":{"$ref":"B631E7C2-9504-11E1-93EE-8FC4A89F4671.data"},"781,2":{"$ref":"B5F3C578-9504-11E1-93EE-8FC4A89F4671.data"},"782,3":{"$ref":"B5550F78-9504-11E1-93EE-8FC4A89F4671.data"},"783,1":{"$ref":"B5DEAA94-9504-11E1-93EE-8FC4A89F4671.data"},"784,2":{"$ref":"B61C66CC-9504-11E1-93EE-8FC4A89F4671.data"},"785,2":{"$ref":"B5B9ED12-9504-11E1-93EE-8FC4A89F4671.data"},"786,2":{"$ref":"B5C4C8C2-9504-11E1-93EE-8FC4A89F4671.data"},"787,2":{"$ref":"B571693E-9504-11E1-93EE-8FC4A89F4671.data"},"788,1":{"$ref":"B5C0AB98-9504-11E1-93EE-8FC4A89F4671.data"},"789,2":{"$ref":"B54A786A-9504-11E1-93EE-8FC4A89F4671.data"},"79,1":{"$ref":"B50BD8B2-9504-11E1-93EE-8FC4A89F4671.data"},"790,2":{"$ref":"B5F27E2A-9504-11E1-93EE-8FC4A89F4671.data"},"791,2":{"$ref":"B5DF6CFE-9504-11E1-93EE-8FC4A89F4671.data"},"792,2":{"$ref":"B5E22228-9504-11E1-93EE-8FC4A89F4671.data"},"793,2":{"$ref":"B54D66A6-9504-11E1-93EE-8FC4A89F4671.data"},"794,2":{"$ref":"B55C92B6-9504-11E1-93EE-8FC4A89F4671.data"},"795,2":{"$ref":"B547D286-9504-11E1-93EE-8FC4A89F4671.data"},"796,2":{"$ref":"B65FA8A6-9504-11E1-93EE-8FC4A89F4671.data"},"797,2":{"$ref":"B5CA362C-9504-11E1-93EE-8FC4A89F4671.data"},"798,1":{"$ref":"B59E5854-9504-11E1-93EE-8FC4A89F4671.data"},"799,2":{"$ref":"B56E6900-9504-11E1-93EE-8FC4A89F4671.data"},"8,1":{"$ref":"B56A2854-9504-11E1-93EE-8FC4A89F4671.data"},"80,1":{"$ref":"B663E07E-9504-11E1-93EE-8FC4A89F4671.data"},"800,2":{"$ref":"B61F1138-9504-11E1-93EE-8FC4A89F4671.data"},"801,1":{"$ref":"B6606B88-9504-11E1-93EE-8FC4A89F4671.data"},"802,1":{"$ref":"B5DA1236-9504-11E1-93EE-8FC4A89F4671.data"},"803,1":{"$ref":"B61FD424-9504-11E1-93EE-8FC4A89F4671.data"},"803,3":{"$ref":"B5EA1672-9504-11E1-93EE-8FC4A89F4671.data"},"804,2":{"$ref":"B63BF28A-9504-11E1-93EE-8FC4A89F4671.data"},"805,2":{"$ref":"B563C45A-9504-11E1-93EE-8FC4A89F4671.data"},"806,2":{"$ref":"B5A4BA96-9504-11E1-93EE-8FC4A89F4671.data"},"807,1":{"$ref":"B5881936-9504-11E1-93EE-8FC4A89F4671.data"},"808,1":{"$ref":"B5501B1C-9504-11E1-93EE-8FC4A89F4671.data"},"809,2":{"$ref":"B5AAE13C-9504-11E1-93EE-8FC4A89F4671.data"},"81,1":{"$ref":"B5F4F510-9504-11E1-93EE-8FC4A89F4671.data"},"810,1":{"$ref":"B654EED4-9504-11E1-93EE-8FC4A89F4671.data"},"811,2":{"$ref":"B653B384-9504-11E1-93EE-8FC4A89F4671.data"},"812,2":{"$ref":"B6036F1E-9504-11E1-93EE-8FC4A89F4671.data"},"813,2":{"$ref":"B509E71E-9504-11E1-93EE-8FC4A89F4671.data"},"814,2":{"$ref":"B63FC428-9504-11E1-93EE-8FC4A89F4671.data"},"815,1":{"$ref":"B53A0476-9504-11E1-93EE-8FC4A89F4671.data"},"815,3":{"$ref":"B5569212-9504-11E1-93EE-8FC4A89F4671.data"},"816,2":{"$ref":"B51D047A-9504-11E1-93EE-8FC4A89F4671.data"},"817,2":{"$ref":"B62426FA-9504-11E1-93EE-8FC4A89F4671.data"},"818,2":{"$ref":"B567E83C-9504-11E1-93EE-8FC4A89F4671.data"},"819,2":{"$ref":"B6618DE2-9504-11E1-93EE-8FC4A89F4671.data"},"82,1":{"$ref":"B5AA1EDC-9504-11E1-93EE-8FC4A89F4671.data"},"820,2":{"$ref":"B6203626-9504-11E1-93EE-8FC4A89F4671.data"},"821,2":{"$ref":"B5654938-9504-11E1-93EE-8FC4A89F4671.data"},"822,2":{"$ref":"B591FF46-9504-11E1-93EE-8FC4A89F4671.data"},"823,1":{"$ref":"B5E89360-9504-11E1-93EE-8FC4A89F4671.data"},"824,2":{"$ref":"B4E8DDE4-9504-11E1-93EE-8FC4A89F4671.data"},"825,2":{"$ref":"B5465320-9504-11E1-93EE-8FC4A89F4671.data"},"826,2":{"$ref":"B5C5297A-9504-11E1-93EE-8FC4A89F4671.data"},"827,2":{"$ref":"B51DC888-9504-11E1-93EE-8FC4A89F4671.data"},"828,2":{"$ref":"B5AC5FB2-9504-11E1-93EE-8FC4A89F4671.data"},"829,2":{"$ref":"B58C5FAA-9504-11E1-93EE-8FC4A89F4671.data"},"83,1":{"$ref":"B62E15C0-9504-11E1-93EE-8FC4A89F4671.data"},"830,2":{"$ref":"B56F27AA-9504-11E1-93EE-8FC4A89F4671.data"},"831,1":{"$ref":"B5C58960-9504-11E1-93EE-8FC4A89F4671.data"},"832,2":{"$ref":"B64D875C-9504-11E1-93EE-8FC4A89F4671.data"},"833,2":{"$ref":"B5A2DC30-9504-11E1-93EE-8FC4A89F4671.data"},"834,1":{"$ref":"B574CB6A-9504-11E1-93EE-8FC4A89F4671.data"},"835,2":{"$ref":"B6312404-9504-11E1-93EE-8FC4A89F4671.data"},"836,2":{"$ref":"B5796C74-9504-11E1-93EE-8FC4A89F4671.data"},"837,1":{"$ref":"B65920F8-9504-11E1-93EE-8FC4A89F4671.data"},"837,3":{"$ref":"B598C5C4-9504-11E1-93EE-8FC4A89F4671.data"},"838,2":{"$ref":"B53A6678-9504-11E1-93EE-8FC4A89F4671.data"},"839,2":{"$ref":"B5CDAB4A-9504-11E1-93EE-8FC4A89F4671.data"},"84,1":{"$ref":"B50C3AB4-9504-11E1-93EE-8FC4A89F4671.data"},"840,2":{"$ref":"B6343036-9504-11E1-93EE-8FC4A89F4671.data"},"841,2":{"$ref":"B4E9AB52-9504-11E1-93EE-8FC4A89F4671.data"},"842,1":{"$ref":"B5F73D16-9504-11E1-93EE-8FC4A89F4671.data"},"843,2":{"$ref":"B5061ED6-9504-11E1-93EE-8FC4A89F4671.data"},"844,1":{"$ref":"B56DA704-9504-11E1-93EE-8FC4A89F4671.data"},"845,2":{"$ref":"B5943D74-9504-11E1-93EE-8FC4A89F4671.data"},"846,1":{"$ref":"B582D516-9504-11E1-93EE-8FC4A89F4671.data"},"847,2":{"$ref":"B5DDE726-9504-11E1-93EE-8FC4A89F4671.data"},"848,2":{"$ref":"B4F1380E-9504-11E1-93EE-8FC4A89F4671.data"},"849,1":{"$ref":"B671DF08-9504-11E1-93EE-8FC4A89F4671.data"},"85,1":{"$ref":"B532C53A-9504-11E1-93EE-8FC4A89F4671.data"},"850,2":{"$ref":"B64F0EA6-9504-11E1-93EE-8FC4A89F4671.data"},"851,2":{"$ref":"B577D2C4-9504-11E1-93EE-8FC4A89F4671.data"},"852,2":{"$ref":"B57B5142-9504-11E1-93EE-8FC4A89F4671.data"},"853,2":{"$ref":"B608D256-9504-11E1-93EE-8FC4A89F4671.data"},"854,2":{"$ref":"B5827602-9504-11E1-93EE-8FC4A89F4671.data"},"855,2":{"$ref":"B66519E4-9504-11E1-93EE-8FC4A89F4671.data"},"856,2":{"$ref":"B4F62F9E-9504-11E1-93EE-8FC4A89F4671.data"},"857,2":{"$ref":"B538D240-9504-11E1-93EE-8FC4A89F4671.data"},"858,2":{"$ref":"B50FBA90-9504-11E1-93EE-8FC4A89F4671.data"},"859,2":{"$ref":"B4F9F8EA-9504-11E1-93EE-8FC4A89F4671.data"},"86,1":{"$ref":"B583F7FC-9504-11E1-93EE-8FC4A89F4671.data"},"860,2":{"$ref":"B53FE530-9504-11E1-93EE-8FC4A89F4671.data"},"861,2":{"$ref":"B6279786-9504-11E1-93EE-8FC4A89F4671.data"},"862,2":{"$ref":"B58E3FDC-9504-11E1-93EE-8FC4A89F4671.data"},"863,1":{"$ref":"B5E406CE-9504-11E1-93EE-8FC4A89F4671.data"},"864,2":{"$ref":"B503148E-9504-11E1-93EE-8FC4A89F4671.data"},"865,2":{"$ref":"B5A519B4-9504-11E1-93EE-8FC4A89F4671.data"},"866,2":{"$ref":"B547131E-9504-11E1-93EE-8FC4A89F4671.data"},"867,2":{"$ref":"B52B924C-9504-11E1-93EE-8FC4A89F4671.data"},"868,2":{"$ref":"B65674F2-9504-11E1-93EE-8FC4A89F4671.data"},"869,2":{"$ref":"B50B773C-9504-11E1-93EE-8FC4A89F4671.data"},"87,1":{"$ref":"B5ABA144-9504-11E1-93EE-8FC4A89F4671.data"},"870,2":{"$ref":"B5212F78-9504-11E1-93EE-8FC4A89F4671.data"},"871,2":{"$ref":"B5E9530E-9504-11E1-93EE-8FC4A89F4671.data"},"872,2":{"$ref":"B5F86060-9504-11E1-93EE-8FC4A89F4671.data"},"873,2":{"$ref":"B4F20342-9504-11E1-93EE-8FC4A89F4671.data"},"874,1":{"$ref":"B627F992-9504-11E1-93EE-8FC4A89F4671.data"},"875,1":{"$ref":"B60FBCD8-9504-11E1-93EE-8FC4A89F4671.data"},"876,2":{"$ref":"B605B7CE-9504-11E1-93EE-8FC4A89F4671.data"},"877,2":{"$ref":"B61D290E-9504-11E1-93EE-8FC4A89F4671.data"},"878,2":{"$ref":"B56423FA-9504-11E1-93EE-8FC4A89F4671.data"},"879,1":{"$ref":"B5A0FC44-9504-11E1-93EE-8FC4A89F4671.data"},"88,1":{"$ref":"B5107D2C-9504-11E1-93EE-8FC4A89F4671.data"},"880,2":{"$ref":"B643F3AE-9504-11E1-93EE-8FC4A89F4671.data"},"881,2":{"$ref":"B56CE440-9504-11E1-93EE-8FC4A89F4671.data"},"882,1":{"$ref":"B5267C8A-9504-11E1-93EE-8FC4A89F4671.data"},"883,2":{"$ref":"B64BA072-9504-11E1-93EE-8FC4A89F4671.data"},"884,2":{"$ref":"B599F58E-9504-11E1-93EE-8FC4A89F4671.data"},"885,3":{"$ref":"B56294C2-9504-11E1-93EE-8FC4A89F4671.data"},"886,2":{"$ref":"B51323E2-9504-11E1-93EE-8FC4A89F4671.data"},"887,1":{"$ref":"B5ED2AEC-9504-11E1-93EE-8FC4A89F4671.data"},"888,2":{"$ref":"B66EBA12-9504-11E1-93EE-8FC4A89F4671.data"},"889,2":{"$ref":"B6170B82-9504-11E1-93EE-8FC4A89F4671.data"},"89,1":{"$ref":"B5119FC2-9504-11E1-93EE-8FC4A89F4671.data"},"890,2":{"$ref":"B62AA4D0-9504-11E1-93EE-8FC4A89F4671.data"},"891,2":{"$ref":"B4F07734-9504-11E1-93EE-8FC4A89F4671.data"},"892,2":{"$ref":"B6067A10-9504-11E1-93EE-8FC4A89F4671.data"},"893,2":{"$ref":"B580F1A6-9504-11E1-93EE-8FC4A89F4671.data"},"894,2":{"$ref":"B5D5BA06-9504-11E1-93EE-8FC4A89F4671.data"},"895,2":{"$ref":"B566C7D6-9504-11E1-93EE-8FC4A89F4671.data"},"896,2":{"$ref":"B6367D78-9504-11E1-93EE-8FC4A89F4671.data"},"897,2":{"$ref":"B5DFCEEC-9504-11E1-93EE-8FC4A89F4671.data"},"898,2":{"$ref":"B5F15CAC-9504-11E1-93EE-8FC4A89F4671.data"},"899,2":{"$ref":"B6373EF2-9504-11E1-93EE-8FC4A89F4671.data"},"9,1":{"$ref":"B5D4337A-9504-11E1-93EE-8FC4A89F4671.data"},"90,1":{"$ref":"B514A794-9504-11E1-93EE-8FC4A89F4671.data"},"900,2":{"$ref":"B6432F96-9504-11E1-93EE-8FC4A89F4671.data"},"901,2":{"$ref":"B6209904-9504-11E1-93EE-8FC4A89F4671.data"},"902,1":{"$ref":"B65C8D88-9504-11E1-93EE-8FC4A89F4671.data"},"903,1":{"$ref":"B5BC8C98-9504-11E1-93EE-8FC4A89F4671.data"},"904,2":{"$ref":"B551A126-9504-11E1-93EE-8FC4A89F4671.data"},"905,2":{"$ref":"B5B80D80-9504-11E1-93EE-8FC4A89F4671.data"},"906,2":{"$ref":"B66C646A-9504-11E1-93EE-8FC4A89F4671.data"},"907,2":{"$ref":"B6769C0A-9504-11E1-93EE-8FC4A89F4671.data"},"908,2":{"$ref":"B52D1BA8-9504-11E1-93EE-8FC4A89F4671.data"},"909,2":{"$ref":"B57D9092-9504-11E1-93EE-8FC4A89F4671.data"},"91,1":{"$ref":"B6896BC8-9504-11E1-93EE-8FC4A89F4671.data"},"91,2":{"$ref":"B568A678-9504-11E1-93EE-8FC4A89F4671.data"},"91,3":{"$ref":"B64C02D8-9504-11E1-93EE-8FC4A89F4671.data"},"910,2":{"$ref":"B5CBBCEA-9504-11E1-93EE-8FC4A89F4671.data"},"911,2":{"$ref":"B52F5F80-9504-11E1-93EE-8FC4A89F4671.data"},"912,2":{"$ref":"B4EC5262-9504-11E1-93EE-8FC4A89F4671.data"},"913,1":{"$ref":"B6782552-9504-11E1-93EE-8FC4A89F4671.data"},"914,2":{"$ref":"B59F787E-9504-11E1-93EE-8FC4A89F4671.data"},"915,2":{"$ref":"B600C20A-9504-11E1-93EE-8FC4A89F4671.data"},"915,3":{"$ref":"B5CC2252-9504-11E1-93EE-8FC4A89F4671.data"},"916,2":{"$ref":"B67A0C0A-9504-11E1-93EE-8FC4A89F4671.data"},"917,2":{"$ref":"B502B142-9504-11E1-93EE-8FC4A89F4671.data"},"918,2":{"$ref":"B642CF2E-9504-11E1-93EE-8FC4A89F4671.data"},"919,1":{"$ref":"B593DE88-9504-11E1-93EE-8FC4A89F4671.data"},"92,1":{"$ref":"B54D044A-9504-11E1-93EE-8FC4A89F4671.data"},"920,2":{"$ref":"B59A5696-9504-11E1-93EE-8FC4A89F4671.data"},"921,2":{"$ref":"B67507AA-9504-11E1-93EE-8FC4A89F4671.data"},"922,2":{"$ref":"B5DE46D0-9504-11E1-93EE-8FC4A89F4671.data"},"923,2":{"$ref":"B60554A0-9504-11E1-93EE-8FC4A89F4671.data"},"924,2":{"$ref":"B5CE6CEC-9504-11E1-93EE-8FC4A89F4671.data"},"925,1":{"$ref":"B62920A6-9504-11E1-93EE-8FC4A89F4671.data"},"925,3":{"$ref":"B65B6A3E-9504-11E1-93EE-8FC4A89F4671.data"},"926,2":{"$ref":"B569677A-9504-11E1-93EE-8FC4A89F4671.data"},"927,1":{"$ref":"B641AB94-9504-11E1-93EE-8FC4A89F4671.data"},"927,3":{"$ref":"B5980940-9504-11E1-93EE-8FC4A89F4671.data"},"928,2":{"$ref":"B4EAD018-9504-11E1-93EE-8FC4A89F4671.data"},"929,2":{"$ref":"B586998A-9504-11E1-93EE-8FC4A89F4671.data"},"93,1":{"$ref":"B56A8682-9504-11E1-93EE-8FC4A89F4671.data"},"93,2":{"$ref":"B672A87A-9504-11E1-93EE-8FC4A89F4671.data"},"93,3":{"$ref":"B5B20B2E-9504-11E1-93EE-8FC4A89F4671.data"},"930,2":{"$ref":"B5387200-9504-11E1-93EE-8FC4A89F4671.data"},"931,2":{"$ref":"B615DC30-9504-11E1-93EE-8FC4A89F4671.data"},"932,2":{"$ref":"B5BAAEC8-9504-11E1-93EE-8FC4A89F4671.data"},"933,2":{"$ref":"B60B7DA8-9504-11E1-93EE-8FC4A89F4671.data"},"934,2":{"$ref":"B673DB14-9504-11E1-93EE-8FC4A89F4671.data"},"935,2":{"$ref":"B5AA7EEA-9504-11E1-93EE-8FC4A89F4671.data"},"936,2":{"$ref":"B519FE1A-9504-11E1-93EE-8FC4A89F4671.data"},"937,2":{"$ref":"B521F21E-9504-11E1-93EE-8FC4A89F4671.data"},"938,2":{"$ref":"B5477462-9504-11E1-93EE-8FC4A89F4671.data"},"939,1":{"$ref":"B4FEE51C-9504-11E1-93EE-8FC4A89F4671.data"},"94,1":{"$ref":"B5F55820-9504-11E1-93EE-8FC4A89F4671.data"},"940,2":{"$ref":"B51CA3EA-9504-11E1-93EE-8FC4A89F4671.data"},"941,2":{"$ref":"B650F82E-9504-11E1-93EE-8FC4A89F4671.data"},"942,2":{"$ref":"B5EC09D2-9504-11E1-93EE-8FC4A89F4671.data"},"943,1":{"$ref":"B5746C38-9504-11E1-93EE-8FC4A89F4671.data"},"944,2":{"$ref":"B5E9B5D8-9504-11E1-93EE-8FC4A89F4671.data"},"945,2":{"$ref":"B521915C-9504-11E1-93EE-8FC4A89F4671.data"},"946,2":{"$ref":"B57109C6-9504-11E1-93EE-8FC4A89F4671.data"},"947,1":{"$ref":"B527B24E-9504-11E1-93EE-8FC4A89F4671.data"},"948,2":{"$ref":"B5CFF062-9504-11E1-93EE-8FC4A89F4671.data"},"949,2":{"$ref":"B5C34BA0-9504-11E1-93EE-8FC4A89F4671.data"},"95,1":{"$ref":"B6482C9E-9504-11E1-93EE-8FC4A89F4671.data"},"950,2":{"$ref":"B558111E-9504-11E1-93EE-8FC4A89F4671.data"},"951,2":{"$ref":"B593801E-9504-11E1-93EE-8FC4A89F4671.data"},"952,2":{"$ref":"B578A6C2-9504-11E1-93EE-8FC4A89F4671.data"},"953,2":{"$ref":"B5D8D7D6-9504-11E1-93EE-8FC4A89F4671.data"},"954,2":{"$ref":"B6585AEC-9504-11E1-93EE-8FC4A89F4671.data"},"954,3":{"$ref":"B56907B2-9504-11E1-93EE-8FC4A89F4671.data"},"955,1":{"$ref":"B59BD732-9504-11E1-93EE-8FC4A89F4671.data"},"956,2":{"$ref":"B6426C0A-9504-11E1-93EE-8FC4A89F4671.data"},"957,2":{"$ref":"B5A76750-9504-11E1-93EE-8FC4A89F4671.data"},"958,2":{"$ref":"B590E05C-9504-11E1-93EE-8FC4A89F4671.data"},"959,2":{"$ref":"B6336DCC-9504-11E1-93EE-8FC4A89F4671.data"},"96,1":{"$ref":"B55C3258-9504-11E1-93EE-8FC4A89F4671.data"},"960,1":{"$ref":"B50924AA-9504-11E1-93EE-8FC4A89F4671.data"},"961,2":{"$ref":"B5049944-9504-11E1-93EE-8FC4A89F4671.data"},"962,2":{"$ref":"B65CF052-9504-11E1-93EE-8FC4A89F4671.data"},"963,2":{"$ref":"B5AD809A-9504-11E1-93EE-8FC4A89F4671.data"},"964,2":{"$ref":"B6420D5A-9504-11E1-93EE-8FC4A89F4671.data"},"965,2":{"$ref":"B61CC8D8-9504-11E1-93EE-8FC4A89F4671.data"},"966,2":{"$ref":"B61BA2B4-9504-11E1-93EE-8FC4A89F4671.data"},"967,2":{"$ref":"B531A31C-9504-11E1-93EE-8FC4A89F4671.data"},"968,1":{"$ref":"B67FC2C6-9504-11E1-93EE-8FC4A89F4671.data"},"969,2":{"$ref":"B56D467E-9504-11E1-93EE-8FC4A89F4671.data"},"969,3":{"$ref":"B6414956-9504-11E1-93EE-8FC4A89F4671.data"},"969,4":{"$ref":"B54A1794-9504-11E1-93EE-8FC4A89F4671.data"},"97,1":{"$ref":"B557B11A-9504-11E1-93EE-8FC4A89F4671.data"},"970,2":{"$ref":"B5BBCC54-9504-11E1-93EE-8FC4A89F4671.data"},"971,2":{"$ref":"B59992D8-9504-11E1-93EE-8FC4A89F4671.data"},"972,1":{"$ref":"B557506C-9504-11E1-93EE-8FC4A89F4671.data"},"973,1":{"$ref":"B645D9D0-9504-11E1-93EE-8FC4A89F4671.data"},"973,3":{"$ref":"B60CA35E-9504-11E1-93EE-8FC4A89F4671.data"},"974,2":{"$ref":"B55630D8-9504-11E1-93EE-8FC4A89F4671.data"},"974,3":{"$ref":"B67443BA-9504-11E1-93EE-8FC4A89F4671.data"},"975,2":{"$ref":"B57A2F38-9504-11E1-93EE-8FC4A89F4671.data"},"976,2":{"$ref":"B5D67F04-9504-11E1-93EE-8FC4A89F4671.data"},"977,2":{"$ref":"B61ADD8E-9504-11E1-93EE-8FC4A89F4671.data"},"978,2":{"$ref":"B4FDC218-9504-11E1-93EE-8FC4A89F4671.data"},"979,2":{"$ref":"B5D55764-9504-11E1-93EE-8FC4A89F4671.data"},"98,1":{"$ref":"B5F8C1EA-9504-11E1-93EE-8FC4A89F4671.data"},"980,1":{"$ref":"B5DA760E-9504-11E1-93EE-8FC4A89F4671.data"},"981,1":{"$ref":"B587B8CE-9504-11E1-93EE-8FC4A89F4671.data"},"982,2":{"$ref":"B6151642-9504-11E1-93EE-8FC4A89F4671.data"},"983,2":{"$ref":"B5C6474C-9504-11E1-93EE-8FC4A89F4671.data"},"984,2":{"$ref":"B63B8F84-9504-11E1-93EE-8FC4A89F4671.data"},"985,2":{"$ref":"B5C5E86A-9504-11E1-93EE-8FC4A89F4671.data"},"986,1":{"$ref":"B4FB7DBE-9504-11E1-93EE-8FC4A89F4671.data"},"987,2":{"$ref":"B612CC8E-9504-11E1-93EE-8FC4A89F4671.data"},"988,2":{"$ref":"B664429E-9504-11E1-93EE-8FC4A89F4671.data"},"989,2":{"$ref":"B5F1BC10-9504-11E1-93EE-8FC4A89F4671.data"},"99,1":{"$ref":"B589568E-9504-11E1-93EE-8FC4A89F4671.data"},"99,2":{"$ref":"B5156882-9504-11E1-93EE-8FC4A89F4671.data"},"990,2":{"$ref":"B67F0124-9504-11E1-93EE-8FC4A89F4671.data"},"991,2":{"$ref":"B656D74E-9504-11E1-93EE-8FC4A89F4671.data"},"992,2":{"$ref":"B5A5D958-9504-11E1-93EE-8FC4A89F4671.data"},"993,2":{"$ref":"B54F5A42-9504-11E1-93EE-8FC4A89F4671.data"},"994,1":{"$ref":"B5BCEB70-9504-11E1-93EE-8FC4A89F4671.data"},"995,2":{"$ref":"B536EE1C-9504-11E1-93EE-8FC4A89F4671.data"},"996,2":{"$ref":"B66D9326-9504-11E1-93EE-8FC4A89F4671.data"},"997,2":{"$ref":"B5EEB1A0-9504-11E1-93EE-8FC4A89F4671.data"},"998,1":{"$ref":"B6073C98-9504-11E1-93EE-8FC4A89F4671.data"},"999,2":{"$ref":"B6445222-9504-11E1-93EE-8FC4A89F4671.data"}},"relations":{"$ref":"B440495E-9504-11E1-93EE-8FC4A89F4671.data"},"sequence":{"$ref":"B40F4386-9504-11E1-93EE-8FC4A89F4671.data"},"start":{"$ref":"B66A1944-9504-11E1-93EE-8FC4A89F4671.data"},"tradition":{"$ref":"load-test.data"},"wit_list_separator":", ","wordsep":" "},"id":"B40EF368-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B620FA0C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"728,2","rank":"728","reading_lexemes":[],"text":"poids"},"id":"B620FA0C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B528E56A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"224,1","rank":"224","reading_lexemes":[],"text":"solitaire"},"id":"B528E56A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B92DBE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"319,1","rank":"319","reading_lexemes":[],"text":"je"},"id":"B5B92DBE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50BD8B2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"79,1","rank":"79","reading_lexemes":[],"text":"candeur"},"id":"B50BD8B2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6061872-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"704,2","rank":"704","reading_lexemes":[],"text":"au"},"id":"B6061872-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B687E6A4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"762,3","rank":"762","reading_lexemes":[],"text":"n''est"},"id":"B687E6A4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61644F4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"647,2","rank":"647","reading_lexemes":[],"text":"perpétuel"},"id":"B61644F4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B51878E2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"664,2","rank":"664","reading_lexemes":[],"text":"ce"},"id":"B51878E2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53A0476-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"815,1","rank":"815","reading_lexemes":[],"text":"simaginer"},"id":"B53A0476-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54C3C4A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"284,1","rank":"284","reading_lexemes":[],"text":"je"},"id":"B54C3C4A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B635574A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"201,1","rank":"201","reading_lexemes":[],"text":"de"},"id":"B635574A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5875974-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"368,1","rank":"368","reading_lexemes":[],"text":"étroit"},"id":"B5875974-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57109C6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"946,2","rank":"946","reading_lexemes":[],"text":"incarnée"},"id":"B57109C6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56C23AC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"251,1","rank":"251","reading_lexemes":[],"text":"abandées"},"id":"B56C23AC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B559301C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"300,1","rank":"300","reading_lexemes":[],"text":"aussi"},"id":"B559301C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B612CC8E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"987,2","rank":"987","reading_lexemes":[],"text":"le"},"id":"B612CC8E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59B754E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"506,1","rank":"506","reading_lexemes":[],"text":"consolation"},"id":"B59B754E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66FEA68-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"608,1","rank":"608","reading_lexemes":[],"text":"jours"},"id":"B66FEA68-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6361AF4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"220,1","rank":"220","reading_lexemes":[],"text":"bras"},"id":"B6361AF4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B588D9E8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"532,1","rank":"532","reading_lexemes":[],"text":"a"},"id":"B588D9E8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5EAD9B8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"535,1","rank":"535","reading_lexemes":[],"text":"consolation"},"id":"B5EAD9B8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B669B83C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"213,1","rank":"213","reading_lexemes":[],"text":"de"},"id":"B669B83C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B523753A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"71,1","rank":"71","reading_lexemes":[],"text":"les"},"id":"B523753A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5746C38-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"943,1","rank":"943","reading_lexemes":[],"text":"voir"},"id":"B5746C38-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B65B6A3E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"925,3","rank":"925","reading_lexemes":[],"text":"seule"},"id":"B65B6A3E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5EF1456-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"288,1","rank":"288","reading_lexemes":[],"text":"la"},"id":"B5EF1456-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C40932-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"61,1","rank":"61","reading_lexemes":[],"text":"pas"},"id":"B5C40932-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B512007A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"558,2","rank":"558","reading_lexemes":[],"text":"du"},"id":"B512007A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5D1E58E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"119,1","rank":"119","reading_lexemes":[],"text":"ténèbres"},"id":"B5D1E58E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B601855A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"323,1","rank":"323","reading_lexemes":[],"text":"aime-les"},"id":"B601855A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B685ED86-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"571,1","rank":"571","reading_lexemes":[],"text":"peut"},"id":"B685ED86-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5ECCB92-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"17,1","rank":"17","reading_lexemes":[],"text":"un"},"id":"B5ECCB92-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6637E7C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"593,2","rank":"593","reading_lexemes":[],"text":"pas"},"id":"B6637E7C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6373EF2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"899,2","rank":"899","reading_lexemes":[],"text":"que"},"id":"B6373EF2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B555CF94-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"729,2","rank":"729","reading_lexemes":[],"text":"du"},"id":"B555CF94-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B640E8EE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"142,2","rank":"142","reading_lexemes":[],"text":"rassasier"},"id":"B640E8EE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E58A30-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"48,1","rank":"48","reading_lexemes":[],"text":"sur"},"id":"B5E58A30-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5931FA2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"362,1","rank":"362","reading_lexemes":[],"text":"Le"},"id":"B5931FA2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54A1794-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"969,4","rank":"969","reading_lexemes":[],"text":"n''aie"},"id":"B54A1794-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B68206EE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"287,1","rank":"287","reading_lexemes":[],"text":"par"},"id":"B68206EE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50439CC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"594,2","rank":"594","reading_lexemes":[],"text":"un"},"id":"B50439CC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C3AA28-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"238,1","rank":"238","reading_lexemes":[],"text":"un"},"id":"B5C3AA28-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B676FCFE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"416,1","rank":"416","reading_lexemes":[],"text":"du"},"id":"B676FCFE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54463DA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"503,1","rank":"503","reading_lexemes":[],"text":"nuits"},"id":"B54463DA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B610E1BC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"762,2","rank":"762","reading_lexemes":[],"text":"nest"},"id":"B610E1BC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B658BFD2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"415,1","rank":"415","reading_lexemes":[],"text":"supplice"},"id":"B658BFD2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53A6678-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"838,2","rank":"838","reading_lexemes":[],"text":"sur"},"id":"B53A6678-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C4C8C2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"786,2","rank":"786","reading_lexemes":[],"text":"consolation"},"id":"B5C4C8C2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6AFB6F2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Witness","data":{"language":"Default","sigil":"V","sourcetype":"collation","text":["Notre besoin de consolation est impossible à","rassasier","Stig Dagerman","Je","suis","dépourvu","de","foi","et","ne","puis","donc","être","heureux","car","un","homme","qui","risque","de","craindre","que","sa","vie","ne","soit","errance","absurde","vers","une","mort","certaine","ne","peut","être","heureux","Je n''ai","reçu","en","héritage","ni","dieu","ni","point","fixe","sur","la","terre","d''où","je","puisse","attirer","l''attention","d''un","dieu","On","ne","m''a","pas","non","plus","légué","la","fureur","bien","déguisée","du","sceptique","les","ruses","des","Sioux","du","rationnaliste","ou","la","candeur","ardente","de","l''athée","Je","n''ose","donc","jeter","la","pierre","ni","à","celle","qui","croit","des","choses","qui","ne","m''inspirent","que","le","doute","ni","à","celui","qui","cultive","son","doute","Comme","si","celui-ci","n''était","pas","lui","aussi","entouré","de","ténèbres","Cette","pierre","m''atteindrait","moi-même","car","je","suis","bien","certain","d''une","chose","le","besoin","de","consolation","que","connaît","l''être","humain","est","impossible","à","rassasier","En","ce","qui","me","concerne","je","traque","la","consolation","comme","le","chasseur","traque","le","gibier","Partout","où","je","crois","l''apercevoir","dans","la","forêt","je","tire","Souvent","je","n''atteins","que","le","vide","mais","une","fois","de","temps","en","temps","une","proie","tombe","à","mes","pieds","Et","comme","je","sais","que","la","consolation","ne","dure","que","le","temps","d''un","souffle","de","vent","dans","la","cîme","d''un","arbre","je","me","dépêche","de","m''emparer","de","ma","victime","Qu''ai-je","alors","entre","les","bras","Puisque","je","suis","solitaire","une","femme","aimée","ou","un","compagnon","de","voyage","malheureux","Puisque","je","suis","poète","un","arc","de","mots","que","je","ressens","de","la","joie","et","de","l''effroi","à","bander","Puisque","je","suis","prisonnier","un","aperçu","soudain","de","la","liberté","Puisque","je","suis","menacé","par","la","mort","un","animal","vivant","et","bien","chaud","un","cœur","qui","bat","de","façon","sarcastique","Puisque","je","suis","menacé","par","la","mer","un","récif","de","granit","bien","dur","Mais","il","y","a","aussi","des","consolations","qui","viennent","à","moi","sans","y","être","conviées","et","qui","remplissent","ma","chambre","de","chuchotements","odieux","Je","suis","ton","plaisir","aime-les","tous","Je","suis","ton","talent","fais-en","aussi","mauvais","usage","que","Toi-même","Je","suis","ton","désir","de","jouissance","seuls","vivent","les","gourmets","Je","suis","ta","solitude","méprise","les","hommes","Je","suis","ton","aspiration","à","la","mort","alors","Tranche","Le","fil","du","rasoir","est","bien","étroit","Je","vois","ma","vie","menacée","par","deux","périls","d''un","côté","par","les","bouches","avides","de","la","gourmandise","de","l''autre","par","l''amertume","de","l''avarice","qui","se","nourrit","d''elle-même","Mais","je","tiens","à","refuser","de","choisir","entre","l''orgie","et","l''ascèse","même","si","je","dois","pour","cela","subir","le","supplice","du","grill","de","mes","désirs","Pour","moi","il","ne","suffit","pas","de","savoir","que","puisque","nous","ne","sommes","pas","libres","de","nos","actes","tout","est","excusable","Ce","que","je","cherche","ce","n''est","pas","une","excuse","à","ma","vie","mais","exactement","le","contraire","d''une","excuse","le","pardon","L''idée","me","vient","finalement","que","toute","consolation","ne","prenant","pas","en","compte","ma","liberté","est","trompeuse","qu''elle","n''est","que","l''image","réfléchie","de","mon","désespoir","En","effet","lorsque","mon","désespoir","me","dit","Prends","confiance","car","chaque","joie","n''est","qu''une","trève","entre","deux","nuits","la","fausse","consolation","me","crie","Espère","car","chaque","nuit","n''est","qu''une","trève","entre","deux","jours","Mais","l''humanité","n''a","que","faire","d''une","consolation","en","forme","de","mot","d''esprit","elle","a","besoin","d''une","consolation","qui","illumine","Et","celui","qui","souhaite","devenir","mauvais","c''est-à-dire","devenir","un","homme","qui","agisse","comme","si","toutes","les","actions","étaient","défendables","doit","au","moins","avoir","la","bonté","de","le","remarquer","lorsqu''il","y","parvient","Personne","ne","peut","énumérer","tous","les","cas","où","la","consolation","est","une","nécessité","Personne","ne","sait","quand","tombera","le","crépuscule","et","la","vie","n''est","pas","un","problème","qui","puisse","être","résolu","en","divisant","la","lumière","par","l''obscurité","et","les","jours","par","les","nuits","c''est","un","voyage","imprévisible","entre","des","lieux","qui","n''existent","pas","Je","peux","par","exemple","marcher","sur","le","rivage","et","ressentir","tout","à","coup","le","défi","effroyable","que","l''éternité","lance","à","mon","existence","dans","le","mouvement","perpétuel","de","la","mer","et","dans","la","fuite","perpétuelle","du","vent","Que","devient","alors","le","temps","si","ce","n''est","une","consolation","pour","le","fait","que","rien","de","ce","qui","est","humain","ne","dure","et","quelle","misérable","consolation","qui","n''enrichit","que","les","Suisses","Je","peux","rester","assis","devant","un","feu","dans","la","pièce","la","moins","exposée","de","toutes","au","danger","et","sentir","soudain","la","mort","me","cerner","Elle","se","trouve","dans","le","feu","dans","tous","les","objets","pointus","qui","m''entourent","dans","le","poids","du","toit","et","dans","la","masse","des","murs","elle","se","trouve","dans","l''eau","et","dans","mon","sang","Que","devient","alors","le","sentiment","humain","de","sécurité","si","ce","n''est","une","consolation","pour","le","fait","que","la","mort","est","ce","qu''il","y","a","de","plus","proche","de","la","vie","et","quelle","misérable","consolation","qui","ne","fait","que","nous","rappeler","ce","qu''elle","veut","nous","faire","oublier","Je","peux","remplir","toutes","mes","pages","blanches","avec","les","plus","belles","combinaisons","de","mots","que","puisse","simaginer","mon","cerveau","Etant","donné","que","je","cherche","à","m''assurer","que","ma","vie","n''est","pas","absurde","et","que","je","ne","suis","pas","seul","sur","la","terre","je","rassemble","tous","ces","mots","en","un","livre","et","je","l''offre","au","monde","En","retour","celui-ci","me","donne","la","richesse","la","gloire","et","le","silence","Mais","que","puis-je","bien","faire","de","cet","argent","et","quel","plaisir","puis-je","prendre","à","contribuer","au","progrès","de","la","littérature","je","ne","désire","que","ce","que","je","n''aurai","pas","confirmation","que","mes","mots","ont","touché","le","cœur","du","monde","Que","devient","alors","mon","talent","si","ce","n''est","une","consolation","pour","le","fait","que","je","suis","seul","mais","quelle","épouvantable","consolation","qui","me","fait","simplement","ressentir","ma","solitude","cinq","fois","plus","fort","Je","peux","voir","la","liberté","incarnée","dans","un","animal","qui","traverse","une","clairière","et","entendre","une","voix","qui","chuchote","Vis","simplement","prends","ce","que","tu","désires","et","n''aie","pas","peur","des","Lois","Mais","qu''est-ce","que","ce","bon","conseil","si","ce","n''est","une","consolation","pour","le","fait","que","la","liberté","n''existe","pas","et","quelle","impitoyable","consolation","pour","celui","qui","s''avise","que","l","être humain","doit","mettre","des","millions","d''années","pour","devenir","un","lézard"],"tradition":{"$ref":"load-test.data"}},"id":"B6AFB6F2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Witness',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B69F422C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Witness","data":{"language":"Default","sigil":"A","sourcetype":"collation","text":["Notre besoin de consolation est impossible à","rassasier","de","Stig Dagerman","Je","suis","dépourvu","de","foi","et","ne","puis","donc","être","heureux","car","un","homme","qui","risque","de","craindre","que","sa","vie","ne","soit","errance","absurde","vers","une","mort","certaine","ne","peut","être","heureux","Je n''ai","reçu","en","héritage","ni","dieu","ni","point","fixe","sur","la","terre","d''où","je","puisse","attirer","l''attention","d''un","dieu","On","ne","m''a","pas","non","plus","légué","la","fureur","bien","déguisée","du","sceptique","les","ruses","des","Sioux","du","rationaliste","ou","la","candeur","ardente","de","l''athée","Je","n''ose","donc","jeter","la","pierre","ni","à","cle","qui","croit","des","choses","qui","ne","m''inspirent","que","le","doute","ni","à","celui","qui","cultive","son","doute","comme","si","celui-ci","n''était","pas","lui","aussi","entouré","de","ténèbres","Cette","pierre","m''atteindrait","moi-même","car","je","suis","bien","certain","d''une","chose","le","besoin","de","consolation","que","connait","l''être","humain","est","impossible","à","rassasier","En","ce","qui","me","concerne","je","traque","la","consolation","comme","le","chasseur","traque","le","gibier","Partout","où","je","crois","l''apercevoir","dans","la","forêt","je","tire","Souvent","je","n''atteins","que","le","vide","mais","une","fois","de","temps","en","temps","une","proie","tombe","à","mes","pieds","Et","comme","je","sais","que","la","consolation","ne","dure","que","le","temps","d''un","souffle","de","vent","dans","la","scime","d''un","arbre","je","me","dépêche","de","m''emparer","de","ma","victime","Qu''ai-je","alors","entre","mes","bras","Puisque","je","suis","solitaire","une","femme","aimée","ou","un","compagnon","de","voyage","malheureux","Puisque","je","suis","poète","un","arc","de","mots","que","je","ressens","de","la","joie","et","de","l''effroi","à","bander","Puisque","je","suis","prisonnier","un","aperçu","soudain","de","la","liberté","Puisque","je","suis","menacé","par","la","mort","un","animal","vivant","et","bien","chaud","un","cœur","qui","bat","de","façon","sarcastique","Puisque","je","suis","menacé","par","la","mer","un","récif","de","granit","bien","dur","Mais","il","y","a","aussi","des","consolations","qui","viennent","à","moi","sans","y","être","conviées","et","qui","remplissent","ma","chambre","de","chuchottements","odieux","Je","suis","ton","plaisir","aime-les","tous","Je","suis","ton","talents","fais-en","aussi","mauvais","usage","que","de","toi-même","Je","suis","ton","désir","de","jouissance","seuls","vivent","les","gourmets","Je","suis","ta","solitude","méprise","les","hommes","Je","suis","ton","aspiration","à","la","mort","alors","tranche","Le","fil","du","rasoir","est","bien","étroit","Je","vois","ma","vie","menacée","par","deux","périls","d''un","côté","par","les","bouches","avides","de","la","gourmandises","de","l''autre","par","l''amertume","de","l''avarice","qui","se","nourrit","d''elle-même","Mais","je","tiens","à","refuser","de","choisir","entre","l''orgie","et","l''ascèse","même","si","je","dois","pour","cela","subir","le","supplice","du","grill","des","mes","désirs","Pour","moi","il","ne","suffit","pas","de","savoir","que","puisque","nous","ne","sommes","pas","libres","de","nos","actes","tout","est","excusable","Ce","que","je","cherche","ce","n''est","pas","une","excuse","à","ma","vie","mais","exactement","le","contraire","d''une","excuse","le","pardon","L''idée","me","vient","finalement","que","toute","consolation","ne","prenant","pas","en","compte","ma","liberté","est","trompeuse","qu''elle","n''est","que","l''image","réfléchie","de","mon","désespoir","En","effet","lorsque","mon","désespoir","me","dit","Perds","confiance","car","chaque","jour","n''est","qu''une","trève","entre","deux","nuits","la","fausse","consolation","me","crie","Espère","car","chaque","nuit","n''est","qu''une","trève","entre","deux","jours","Mais","l''humanité","n''a","que","faire","d''une","consolation","en","forme","de","mot","d''esprit","elle","a","besoin","d''une","consolation","qui","illumine","Et","celui","qui","souhaite","devenir","mauvais","c''est-à-dire","devenir","un","homme","qui","agisse","comme","si","toutes","les","actions","étaient","défendables","doit","au","moins","avoir","la","bonté","de","le","remarquer","lorsqu''il","y","parvient","Personne","ne","peut","énumérer","tous","les","cas","où","la","consolation","est","une","nécessité","Personne","ne","sait","quand","tombera","le","crépuscule","et","la","vie","n''est","pas","un","problème","qui","puisse","être","résolu","en","divisant","la","lumière","par","l''obscurité","et","les","jours","par","les","nuits","c''est","un","voyage","imprévisible","entre","des","lieux","qui","n''existent","pas","Je","peux","par","exemple","marcher","sur","le","rivage","et","ressentir","tout","à","coup","le","défi","effroyable","que","l''éternité","lance","à","mon","existence","dans","le","mouvement","perpétuel","de","la","mer","et","dans","la","fuite","perpétuelle","du","vent","Que","devient","alors","le","temps","si","ce","n''est","une","consolation","pour","le","fait","que","rien","de","ce","qui","est","humain","ne","dure","et","quelle","misérable","consolation","qui","n''enrichit","que","les","Suisses","Je","peux","rester","assis","devant","un","feu","dans","la","pièce","la","moins","exposée","de","toutes","au","danger","et","sentir","soudain","la","mort","me","cerner","Elle","se","trouve","dans","le","feu","dans","tous","les","objets","pointus","qui","m''entourent","dans","le","poids","du","toit","et","dans","la","masse","des","murs","elle","se","trouve","dans","l''eau","dans","la","neige","dans","la","chaleur","et","dans","mon","sang","Que","devient","alors","le","sentiment","humain","de","sécurité","si","ce","n''est","une","consolation","pour","le","fait","que","la","mort","est","ce","qu''il","y","a","dele","plus","proche","de","la","vie","et","quelle","misérable","consolation","qui","ne","fait","que","nous","rappeler","ce","qu''elle","veut","nous","faire","oublier","Je","peux","remplir","toutes","mes","pages","blanches","avec","les","plus","belles","combinaisons","de","mots","que","puisse","simaginer","mon","cerveau","Etant","donné","que","je","cherche","à","m''assurer","que","ma","vie","n''est","pas","absurde","et","que","je","ne","suis","pas","seule","sur","la","terre","je","rassemble","tous","ces","mots","en","un","livre","et","je","l''offre","au","monde","En","retour","celui-ci","me","donne","la","richesse","la","gloire","et","le","silence","Mais","que","puis-je","bien","faire","de","cet","argent","et","quel","plaisir","puis-je","prendre","à","contribuer","au","progrès","de","la","littérature","je","ne","désire","que","ce","que","je","n''aurai","pas","confirmation","de","ce","que","mes","mots","ont","touché","le","cœur","du","monde","Que","devient","alors","mon","talent","si","ce","n''est","une","consolation","pour","le","fait","que","je","suis","seule","mais","quelle","épouvantable","consolation","qui","me","fait","simplement","ressentir","ma","solitude","cinq","fois","plus","fort","Je","peux","voir","la","liberté","incarnée","dans","un","animal","qui","traverse","rapidement","une","clairière","et","entendre","une","voix","qui","chuchote","Vis","simplement","prends","ce","que","tu","désires","et","n''aie","pas","peur","des","lois","Mais","qu''est-ce","que","ce","bon","conseil","si","ce","n''est","une","consolation","pour","le","fait","que","la","liberté","n''existe","pas","et","quelle","impitoyable","consolation","pour","celui","qui","s''avise","que","l","être humain","doit","mettre","des","millions","d''années","pour","devenir","un","lézard"],"tradition":{"$ref":"load-test.data"}},"id":"B69F422C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Witness',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F50B6E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"310,1","rank":"310","reading_lexemes":[],"text":"conviée"},"id":"B4F50B6E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50F5780-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"166,1","rank":"166","reading_lexemes":[],"text":"je"},"id":"B50F5780-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B58D7F70-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"422,1","rank":"422","reading_lexemes":[],"text":"moi"},"id":"B58D7F70-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6254DC8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"369,1","rank":"369","reading_lexemes":[],"text":"Je"},"id":"B6254DC8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E406CE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"863,1","rank":"863","reading_lexemes":[],"text":"et"},"id":"B5E406CE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B673DB14-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"934,2","rank":"934","reading_lexemes":[],"text":"ressentir"},"id":"B673DB14-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DC18D4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"verb tense","reading_a":"croit","reading_b":"croient","scope":"global","type":"grammatical"},"id":"B4DC18D4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C9C8D6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"463,1","rank":"463","reading_lexemes":[],"text":"me"},"id":"B5C9C8D6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5107D2C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"88,1","rank":"88","reading_lexemes":[],"text":"pierre"},"id":"B5107D2C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E70E00-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"583,1","rank":"583","reading_lexemes":[],"text":"ne"},"id":"B5E70E00-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B535CC94-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"302,1","rank":"302","reading_lexemes":[],"text":"consolations"},"id":"B535CC94-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B62C7C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"413,2","rank":"413","reading_lexemes":[],"text":"subir"},"id":"B5B62C7C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5477462-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"938,2","rank":"938","reading_lexemes":[],"text":"fois"},"id":"B5477462-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DE46D0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"922,2","rank":"922","reading_lexemes":[],"text":"que"},"id":"B5DE46D0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B61F1138-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"800,2","rank":"800","reading_lexemes":[],"text":"peux"},"id":"B61F1138-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5BFEB22-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"575,1","rank":"575","reading_lexemes":[],"text":"cas"},"id":"B5BFEB22-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56B5256-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"384,1","rank":"384","reading_lexemes":[],"text":"la"},"id":"B56B5256-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57A2F38-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"975,2","rank":"975","reading_lexemes":[],"text":"Mais"},"id":"B57A2F38-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5037820-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"78,1","rank":"78","reading_lexemes":[],"text":"la"},"id":"B5037820-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D97E76-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"def/indef article","reading_a":"les","reading_b":"des","scope":"global","type":"grammatical"},"id":"B4D97E76-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52DDB60-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"710,1","rank":"710","reading_lexemes":[],"text":"mort"},"id":"B52DDB60-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D70088-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"verb mood","reading_a":"puisse","reading_b":"peut","scope":"global","type":"grammatical"},"id":"B4D70088-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DC6154-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"preposition opposites","reading_a":"au","reading_b":"du","scope":"global","type":"lexical"},"id":"B4DC6154-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5489324-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"469,1","rank":"469","reading_lexemes":[],"text":"ne"},"id":"B5489324-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F81444-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"355,1","rank":"355","reading_lexemes":[],"text":"ton"},"id":"B4F81444-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B564E7CC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"777,4","rank":"777","reading_lexemes":[],"text":"dele"},"id":"B564E7CC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6312404-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"835,2","rank":"835","reading_lexemes":[],"text":"suis"},"id":"B6312404-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66B40BC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"239,1","rank":"239","reading_lexemes":[],"text":"arche"},"id":"B66B40BC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66ADE9C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"363,1","rank":"363","reading_lexemes":[],"text":"fil"},"id":"B66ADE9C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5501B1C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"808,1","rank":"808","reading_lexemes":[],"text":"plus"},"id":"B5501B1C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B643F3AE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"880,2","rank":"880","reading_lexemes":[],"text":"contribuer"},"id":"B643F3AE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B66DF4D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"273,1","rank":"273","reading_lexemes":[],"text":"et"},"id":"B66DF4D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59CD146-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"497,2","rank":"497","reading_lexemes":[],"text":"joie"},"id":"B59CD146-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D5CF10-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"sg/pl or noun/verb","reading_a":"êtres","reading_b":"être","scope":"global","type":"grammatical"},"id":"B4D5CF10-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CC86CA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"387,1","rank":"387","reading_lexemes":[],"text":"l''autre"},"id":"B5CC86CA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63EFEEE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"340,1","rank":"340","reading_lexemes":[],"text":"de"},"id":"B63EFEEE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55F3890-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"597,2","rank":"597","reading_lexemes":[],"text":"puisse"},"id":"B55F3890-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62C8B74-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"272,1","rank":"272","reading_lexemes":[],"text":"vivant"},"id":"B62C8B74-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59866EC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"155,1","rank":"155","reading_lexemes":[],"text":"traqu"},"id":"B59866EC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D4FACC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"subire","reading_b":"subir","scope":"global","type":"spelling"},"id":"B4D4FACC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B52A0EFE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"487,1","rank":"487","reading_lexemes":[],"text":"effet"},"id":"B52A0EFE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B59F18DE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"668,1","rank":"668","reading_lexemes":[],"text":"pour"},"id":"B59F18DE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5098594-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"546,1","rank":"546","reading_lexemes":[],"text":"un"},"id":"B5098594-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B549578C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"764,2","rank":"764","reading_lexemes":[],"text":"une"},"id":"B549578C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5255882-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"183,1","rank":"183","reading_lexemes":[],"text":"tombe"},"id":"B5255882-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57AEFF4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"603,1","rank":"603","reading_lexemes":[],"text":"lumière"},"id":"B57AEFF4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4FDC218-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"978,2","rank":"978","reading_lexemes":[],"text":"ce"},"id":"B4FDC218-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5326414-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"172,1","rank":"172","reading_lexemes":[],"text":"le"},"id":"B5326414-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B568A678-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"91,2","rank":"91","reading_lexemes":[],"text":"celle"},"id":"B568A678-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B686B5AE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"450,1","rank":"450","reading_lexemes":[],"text":"excuse"},"id":"B686B5AE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B633CDBC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"725,2","rank":"725","reading_lexemes":[],"text":"m''entourent"},"id":"B633CDBC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B54FBB22-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"445,1","rank":"445","reading_lexemes":[],"text":"cherche"},"id":"B54FBB22-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50801C4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"130,1","rank":"130","reading_lexemes":[],"text":"chose"},"id":"B50801C4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B68B5186-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"452,1","rank":"452","reading_lexemes":[],"text":"ma"},"id":"B68B5186-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B56CE440-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"881,2","rank":"881","reading_lexemes":[],"text":"au"},"id":"B56CE440-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5CA9838-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"357,1","rank":"357","reading_lexemes":[],"text":"à"},"id":"B5CA9838-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5B8CFEA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"196,1","rank":"196","reading_lexemes":[],"text":"que"},"id":"B5B8CFEA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5AC5FB2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"828,2","rank":"828","reading_lexemes":[],"text":"n''est"},"id":"B5AC5FB2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B634F534-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"632,2","rank":"632","reading_lexemes":[],"text":"tour"},"id":"B634F534-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DCA93E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"gender","reading_a":"celui","reading_b":"celle","scope":"global","type":"grammatical"},"id":"B4DCA93E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FED968-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"12,1","rank":"12","reading_lexemes":[],"text":"puis"},"id":"B5FED968-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4ECB1C6-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"122,1","rank":"122","reading_lexemes":[],"text":"m''atteindrait"},"id":"B4ECB1C6-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57E4DE8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"747,2","rank":"747","reading_lexemes":[],"text":"chaleur"},"id":"B57E4DE8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B62DB21A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"677,2","rank":"677","reading_lexemes":[],"text":"humain"},"id":"B62DB21A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B57F0EC2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"737,2","rank":"737","reading_lexemes":[],"text":"elle"},"id":"B57F0EC2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4FEE51C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"939,1","rank":"939","reading_lexemes":[],"text":"plus"},"id":"B4FEE51C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5EB371E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"749,1","rank":"749","reading_lexemes":[],"text":"dans"},"id":"B5EB371E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5E76FB2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"610,1","rank":"610","reading_lexemes":[],"text":"les"},"id":"B5E76FB2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5F0FC12-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"402,1","rank":"402","reading_lexemes":[],"text":"choisir"},"id":"B5F0FC12-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50C3AB4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"84,1","rank":"84","reading_lexemes":[],"text":"n''ose"},"id":"B50C3AB4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B664B6F2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"518,1","rank":"518","reading_lexemes":[],"text":"jours"},"id":"B664B6F2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5539166-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"266,1","rank":"266","reading_lexemes":[],"text":"menacé"},"id":"B5539166-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63E3B30-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"549,1","rank":"549","reading_lexemes":[],"text":"agisse"},"id":"B63E3B30-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B6235B6C-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"20,1","rank":"20","reading_lexemes":[],"text":"risque"},"id":"B6235B6C-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4F19D80-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"354,1","rank":"354","reading_lexemes":[],"text":"suis"},"id":"B4F19D80-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DA5C56-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"chuchottements","reading_b":"chuchotements","scope":"global","type":"spelling"},"id":"B4DA5C56-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55B1440-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"195,1","rank":"195","reading_lexemes":[],"text":"dure"},"id":"B55B1440-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B60E3516-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"719,1","rank":"719","reading_lexemes":[],"text":"dans"},"id":"B60E3516-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B524987A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"396,1","rank":"396","reading_lexemes":[],"text":"Mais"},"id":"B524987A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B50924AA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"960,1","rank":"960","reading_lexemes":[],"text":"chuchote"},"id":"B50924AA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55F9740-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"153,1","rank":"153","reading_lexemes":[],"text":"le"},"id":"B55F9740-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5DB9DEA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"177,1","rank":"177","reading_lexemes":[],"text":"de"},"id":"B5DB9DEA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5513EC0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"120,1","rank":"120","reading_lexemes":[],"text":"Cette"},"id":"B5513EC0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D746D8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"annotation":"verb tense","reading_a":"ressent","reading_b":"ressens","scope":"global","type":"grammatical"},"id":"B4D746D8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5ABFFF4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"203,1","rank":"203","reading_lexemes":[],"text":"dans"},"id":"B5ABFFF4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5C7DDBE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"351,1","rank":"351","reading_lexemes":[],"text":"les"},"id":"B5C7DDBE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4FB7DBE-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"986,1","rank":"986","reading_lexemes":[],"text":"pour"},"id":"B4FB7DBE-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B525BAFC-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"441,1","rank":"441","reading_lexemes":[],"text":"excusable"},"id":"B525BAFC-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4DB8A5E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"rassassier","reading_b":"rassasier","scope":"global","type":"spelling"},"id":"B4DB8A5E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B55ED724-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"217,1","rank":"217","reading_lexemes":[],"text":"alors"},"id":"B55ED724-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B67D7A20-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"207,1","rank":"207","reading_lexemes":[],"text":"arbre"},"id":"B67D7A20-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5734A2E-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"390,1","rank":"390","reading_lexemes":[],"text":"de"},"id":"B5734A2E-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B4D861A8-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Relationship","data":{"reading_a":"trêve","reading_b":"trève","scope":"global","type":"spelling"},"id":"B4D861A8-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Relationship',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B53ACEBA-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"234,1","rank":"234","reading_lexemes":[],"text":"Puisque"},"id":"B53ACEBA-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B63C53B0-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"386,1","rank":"386","reading_lexemes":[],"text":"de"},"id":"B63C53B0-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B654EED4-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"810,1","rank":"810","reading_lexemes":[],"text":"combinaisons"},"id":"B654EED4-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B513E4B2-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"170,1","rank":"170","reading_lexemes":[],"text":"n''atteins"},"id":"B513E4B2-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B606DC3A-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"0","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"239,2","rank":"239","reading_lexemes":[],"text":"arc"},"id":"B606DC3A-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B547D286-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"795,2","rank":"795","reading_lexemes":[],"text":"veut"},"id":"B547D286-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+INSERT INTO "entries" VALUES('B5FB6C92-9504-11E1-93EE-8FC4A89F4671','{"__CLASS__":"Text::Tradition::Collation::Reading","data":{"collation":{"$ref":"B40EF368-9504-11E1-93EE-8FC4A89F4671.data"},"is_common":"1","is_end":null,"is_lacuna":null,"is_ph":null,"is_start":null,"join_next":null,"join_prior":null,"language":"Default","public::id":"758,2","rank":"758","reading_lexemes":[],"text":"de"},"id":"B5FB6C92-9504-11E1-93EE-8FC4A89F4671"}','Text::Tradition::Collation::Reading',0,NULL,NULL);
+CREATE TABLE gin_index (
+  id varchar NOT NULL,
+  value varchar NOT NULL,
+  FOREIGN KEY(id) REFERENCES entries(id)
+);
+CREATE INDEX gin_index_idx_id ON gin_index (id);
+CREATE INDEX gin_index_ids ON gin_index (id);
+CREATE INDEX gin_index_values ON gin_index (value);
+COMMIT;
diff --git a/t/load-save-speed.t b/t/load-save-speed.t
new file mode 100644 (file)
index 0000000..57aa714
--- /dev/null
@@ -0,0 +1,184 @@
+#!/usr/bin/perl
+
+use strict;
+use warnings;
+
+use Benchmark 'timethis';
+use JSON;
+use Sys::Hostname;
+use File::Path 'mkpath';
+
+use Text::Tradition;
+use Text::Tradition::Directory;
+use Test::More;
+
+## Don't run this test when running make test or prove, to run it use perl -Ilib t/load-save-speed.t
+
+if($ENV{HARNESS_ACTIVE}) {
+    plan skip_all => 'Skipping performance tests under prove/make, run manually to test performance improvements';
+} else {
+    plan 'no_plan';
+}
+
+## Using t/data/besoin.xml  / t/data/besoin.dot as a large test example:
+my $test_name = 'besoin';
+# my $test_name = 'simple';
+
+## Data file for repeated benchmarks:
+my $benchmark_file = 't/data/load-save-benchmark.json';
+
+## SQL file (previously dumped KiokuDB) for testing tradition directory loading:
+my $load_sql = 't/data/speed_test_load.sql';
+
+## uuid to load from the above stored db:
+my $load_uuid = 'load-test';
+
+## Pass the git hash to identify this performance improvement, if you
+## want to save the results of this run. Pass nothing to just run a test
+## of the current code against the previous best.
+my $git_hash = shift;
+
+if($git_hash) {
+    diag "Will save results using $git_hash as a key";
+} else {
+    diag "No git hash passed in, just running test";
+}
+
+## Setup
+mkpath('t/var') if(!-d 't/var');
+
+my $tradition = Text::Tradition->new(
+   'input' => 'Self',
+   'file'  => "t/data/${test_name}.xml"
+    ## smaller for testing the test!
+#    'input' => 'Tabular',
+#    'file' => 't/data/simple.txt',
+);
+$tradition->add_stemma(dotfile => "t/data/${test_name}.dot");
+
+#my $fh = File::Temp->new();
+#my $file = $fh->filename;
+#$fh->close;
+## use t/var so you can look at the results after if neccessary:
+
+my $load_db = 't/var/speed_test_load.db';
+unlink($load_db) if(-e $load_db);
+my $load_dsn = "dbi:SQLite:dbname=$load_db";
+## Prime db from .sql file:
+## ?? fails
+`sqlite3 $load_db < $load_sql`;
+
+my $save_db = 't/var/speed_test_save.db';
+unlink($save_db) if(-e $save_db);
+my $save_dsn = "dbi:SQLite:dbname=${save_db}";
+
+my $benchmark_data = load_benchmark($benchmark_file);
+
+my $test_save = sub {
+    unlink($save_db) if(-e $save_db);
+
+    my $dir = Text::Tradition::Directory->new(
+        dsn => $save_dsn,
+        extra_args => { create => 1 },
+    );
+    ## This seems to be a required magic incantation:
+    my $scope = $dir->new_scope;
+
+    ## save the tradition (with stemma) to the db:
+    my $uuid = $dir->save($tradition);
+#    print STDERR "UUID: $uuid\n";
+
+};
+
+my $load_tradition;
+my $test_load = sub {
+    my $dir = Text::Tradition::Directory->new(
+        dsn => $load_dsn,
+    );
+
+    ## This seems to be a required magic incantation:
+    my $scope = $dir->new_scope;
+
+    $load_tradition = $dir->tradition($load_uuid);
+#    print STDERR $load_tradition->name, $tradition->name, "\n";
+};
+
+## Find most recent benchmark info on this hostname
+my ($last_benchmark) = grep { $_->{host} eq hostname() } (reverse @{$benchmark_data}); 
+
+if(!$last_benchmark) {
+    diag "Can't find last benchmark for " . hostname() . ", starting again";
+    $last_benchmark = fresh_benchmark();
+}
+
+
+## Benchmark current code:
+## Should probably run the test the same number of times as the last time it ran
+## Or compare results more sanely
+my $new_save_result = timethis(5, $test_save);
+
+my $new_save = $new_save_result->[1] + $new_save_result->[2];
+use Data::Dump;
+
+my $old_save = $last_benchmark->{save_times}[1] + $last_benchmark->{save_times}[2];
+ok( $new_save < $old_save, "Saving to a Tradition Directory got faster: $new_save vs $old_save");
+
+my $new_load_result = timethis(20, $test_load);
+
+my $new_load = $new_load_result->[1] + $new_load_result->[2];
+my $old_load = $last_benchmark->{load_times}[1] + $last_benchmark->{load_times}[2];
+ok($new_load < $old_load, "Loading from a Tradition Directory got faster: $new_load vs $old_load");
+
+$test_load->();
+isa_ok($load_tradition, 'Text::Tradition');
+ok($load_tradition->collation->as_svg());
+
+if($git_hash) {
+    push(@{ $benchmark_data }, {
+        git_hash => $git_hash,
+        host => hostname(),
+        load_times => [@$new_load_result],
+        save_times => [@$new_save_result],
+    });
+
+    save_benchmark($benchmark_file, $benchmark_data);
+}
+
+## -----------------------------------------------------------------------------
+
+sub load_benchmark {
+    my ($filename) = @_;
+
+    my $loaded_data = [];
+    if(-e $filename) {
+        local $/;
+        open( my $fh, '<', $filename ) || die "$!";
+        my $json_text   = <$fh>;
+        $fh->close();
+        $loaded_data = decode_json( $json_text );
+    } else {
+        ## bare bones default table:
+        $loaded_data = fresh_benchmark();
+    }
+
+    return $loaded_data;
+}
+
+sub fresh_benchmark {
+    return {
+             git_hash => '',
+             host => hostname(),
+             load_times => [1000, 1000, 1000, 0, 0, 5],
+             save_times => [1000, 1000, 1000, 0, 0, 20],
+         }
+}
+
+sub save_benchmark {
+    my ($filename, $new_benchmarks) = @_;
+
+    my $json_text = JSON->new->utf8->allow_blessed->encode($new_benchmarks);
+
+    open(my $fh, '>', $filename) || die "$!";
+    $fh->print($json_text);
+    $fh->close();
+}